mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 19:07:45 +00:00
Fix nullptr warnings
This commit is contained in:
parent
cf37ad8c80
commit
12d164393e
@ -198,14 +198,14 @@ CacheItem * ConverterCache::Impl::find(FileName const & from,
|
|||||||
string const & format)
|
string const & format)
|
||||||
{
|
{
|
||||||
if (!lyxrc.use_converter_cache)
|
if (!lyxrc.use_converter_cache)
|
||||||
return 0;
|
return nullptr;
|
||||||
CacheType::iterator const it1 = cache.find(from);
|
CacheType::iterator const it1 = cache.find(from);
|
||||||
if (it1 == cache.end())
|
if (it1 == cache.end())
|
||||||
return 0;
|
return nullptr;
|
||||||
FormatCacheType & format_cache = it1->second.cache;
|
FormatCacheType & format_cache = it1->second.cache;
|
||||||
FormatCacheType::iterator const it2 = format_cache.find(format);
|
FormatCacheType::iterator const it2 = format_cache.find(format);
|
||||||
if (it2 == format_cache.end())
|
if (it2 == format_cache.end())
|
||||||
return 0;
|
return nullptr;
|
||||||
return &(it2->second);
|
return &(it2->second);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user