diff options
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util.cpp b/src/util.cpp index 37da875..dafc068 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -908,6 +908,7 @@ int isAccessibleFromWithExpScope(Definition *scope,FileDef *fileScope,Definition Definition *cd; for (cli.toFirst();(cd=cli.current());++cli) { + //printf("Trying for class %s\n",cd->name().data()); i = isAccessibleFromWithExpScope(scope,fileScope,item,cd->name()); if (i!=-1) { @@ -925,6 +926,7 @@ int isAccessibleFromWithExpScope(Definition *scope,FileDef *fileScope,Definition { if (g_visitedNamespaces.find(nd->name())==0) { + //printf("Trying for namespace %s\n",nd->name().data()); i = isAccessibleFromWithExpScope(scope,fileScope,item,nd->name()); if (i!=-1) { |