mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Remove unused variable warning and remove preprocessor switch.
This commit is contained in:
parent
6adf079796
commit
193cda6e48
@ -92,24 +92,15 @@ lyx::Converter const * setConverter(string const & from)
|
||||
return ptr;
|
||||
}
|
||||
|
||||
// Show the error only once
|
||||
#ifdef LYX_USE_STD_CALL_ONCE
|
||||
// This is thread-safe.
|
||||
static once_flag flag;
|
||||
call_once(flag, [&](){
|
||||
LYXERR0("PreviewLoader::startLoading()\n"
|
||||
<< "No converter from \"" << from
|
||||
<< "\" format has been defined.");
|
||||
});
|
||||
#else
|
||||
// This is also thread-safe according to §6.7.4 of the C++11 standard.
|
||||
static bool once = ([&]{
|
||||
LYXERR0("PreviewLoader::startLoading()\n"
|
||||
<< "No converter from \"" << from
|
||||
<< "\" format has been defined.");
|
||||
} (), true);
|
||||
#endif
|
||||
return 0;
|
||||
// Show the error only once. This is thread-safe.
|
||||
static nullptr_t no_conv = [&]{
|
||||
LYXERR0("PreviewLoader::startLoading()\n"
|
||||
<< "No converter from \"" << from
|
||||
<< "\" format has been defined.");
|
||||
return nullptr;
|
||||
} ();
|
||||
|
||||
return no_conv;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user