You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// we don't need the list of using declaration anymore
12853
12789
g_usingDeclarations.clear();
12854
12790
@@ -13488,23 +13424,7 @@ void generateOutput()
13488
13424
g_outputList->cleanup();
13489
13425
cleanupInlineGraph();
13490
13426
13491
-
msg("type lookup cache used {}/{} hits={} misses={}\n",
13492
-
Doxygen::typeLookupCache->size(),
13493
-
Doxygen::typeLookupCache->capacity(),
13494
-
Doxygen::typeLookupCache->hits(),
13495
-
Doxygen::typeLookupCache->misses());
13496
-
msg("symbol lookup cache used {}/{} hits={} misses={}\n",
13497
-
Doxygen::symbolLookupCache->size(),
13498
-
Doxygen::symbolLookupCache->capacity(),
13499
-
Doxygen::symbolLookupCache->hits(),
13500
-
Doxygen::symbolLookupCache->misses());
13501
-
int typeCacheParam = computeIdealCacheParam(static_cast<size_t>(Doxygen::typeLookupCache->misses()*2/3)); // part of the cache is flushed, hence the 2/3 correction factor
13502
-
int symbolCacheParam = computeIdealCacheParam(static_cast<size_t>(Doxygen::symbolLookupCache->misses()));
13503
-
int cacheParam = std::max(typeCacheParam,symbolCacheParam);
13504
-
if (cacheParam>Config_getInt(LOOKUP_CACHE_SIZE))
13505
-
{
13506
-
msg("Note: based on cache misses the ideal setting for LOOKUP_CACHE_SIZE is {} at the cost of higher memory usage.\n",cacheParam);
0 commit comments