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
DBG_CTX((stderr,"d->getReference()='%s' d->getOutputBase()='%s' name='%s' member name='%s'\n",qPrint(d->getReference()),qPrint(d->getOutputFileBase()),qPrint(d->name()),qPrint(md->name())));
2821
+
DBG_CTX((stderr,"d->getReference()='%s' d->getOutputBase()='%s' name='%s' member name='%s'\n",qPrint(d->getReference()),qPrint(d->getOutputFileBase()),qPrint(d->name()),qPrint(result.md->name())));
2816
2822
2817
2823
writeMultiLineCodeLink(yyscanner,ol,result.md, !text.isEmpty() ? text : memberText);
2818
2824
addToSearchIndex(yyscanner,!text.isEmpty() ? text : memberText);
@@ -1377,7 +1378,7 @@ int SymbolResolver::Private::isAccessibleFrom(StringUnorderedSet &visitedKeys,
1377
1378
1378
1379
if (itemScope==scope || memberAccessibleFromScope || nestedClassInsideBaseClass || enumValueOfStrongEnum)
1379
1380
{
1380
-
//printf("> found it memberAccessibleFromScope=%d nestedClassInsideBaseClass=%d enumValueOfStrongEnum=%d\n",memberAccessibleFromScope,nestedClassInsideBaseClass,enumValueOfStrongEnum);
1381
+
//fprintf(stderr,"> found it memberAccessibleFromScope=%d nestedClassInsideBaseClass=%d enumValueOfStrongEnum=%d\n",memberAccessibleFromScope,nestedClassInsideBaseClass,enumValueOfStrongEnum);
1381
1382
int distanceToBase=0;
1382
1383
if (nestedClassInsideBaseClass)
1383
1384
{
@@ -1403,25 +1404,25 @@ int SymbolResolver::Private::isAccessibleFrom(StringUnorderedSet &visitedKeys,
1403
1404
itemScope->getOuterScope()==Doxygen::globalScope)
1404
1405
{ // item is in an anonymous namespace in the global scope and we are
1405
1406
// looking in the global scope
1406
-
//printf("> found in anonymous namespace\n");
1407
+
//fprintf(stderr,"> found in anonymous namespace\n");
1407
1408
result++;
1408
1409
goto done;
1409
1410
}
1410
1411
if (m_fileScope)
1411
1412
{
1412
1413
if (accessibleViaUsingClass(visitedKeys,m_fileScope->getUsedClasses(),item))
1413
1414
{
1414
-
//printf("> found via used class\n");
1415
+
//fprintf(stderr,"> found via used class\n");
1415
1416
goto done;
1416
1417
}
1417
1418
StringUnorderedSet visitedNamespaces;
1418
1419
if (accessibleViaUsingNamespace(visitedKeys,visitedNamespaces,m_fileScope->getUsedNamespaces(),item))
1419
1420
{
1420
-
//printf("> found via used namespace\n");
1421
+
//fprintf(stderr,"> found via used namespace\n");
1421
1422
goto done;
1422
1423
}
1423
1424
}
1424
-
//printf("> reached global scope\n");
1425
+
//fprintf(stderr,"> reached global scope\n");
1425
1426
result=-1; // not found in path to globalScope
1426
1427
}
1427
1428
else// keep searching
@@ -1430,16 +1431,31 @@ int SymbolResolver::Private::isAccessibleFrom(StringUnorderedSet &visitedKeys,
1430
1431
if (scope->definitionType()==Definition::TypeNamespace)
0 commit comments