Skip to content

Commit

Permalink
Bug 789168 - Increasing access of inherited C++ members with 'using..…
Browse files Browse the repository at this point in the history
….' is not recognized by Doxygen
  • Loading branch information
Dimitri van Heesch committed Oct 29, 2017
1 parent 7ce59c9 commit 9468ede
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/doxygen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2112,9 +2112,8 @@ static void findUsingDeclImports(EntryNav *rootNav)
(rootNav->parent()->section()&Entry::COMPOUND_MASK) // in a class/struct member
)
{
//printf("Found using declaration %s at line %d of %s inside section %x\n",
// root->name.data(),root->startLine,root->fileName.data(),
// root->parent->section);
//printf("Found using declaration %s inside section %x\n",
// rootNav->name().data(), rootNav->parent()->section());
QCString fullName=removeRedundantWhiteSpace(rootNav->parent()->name());
fullName=stripAnonymousNamespaceScope(fullName);
fullName=stripTemplateSpecifiersFromScope(fullName);
Expand All @@ -2130,7 +2129,7 @@ static void findUsingDeclImports(EntryNav *rootNav)
ClassDef *bcd = getResolvedClass(cd,0,scope); // todo: file in fileScope parameter
if (bcd)
{
//printf("found class %s\n",bcd->name().data());
//printf("found class %s memName=%s\n",bcd->name().data(),memName.data());
MemberNameInfoSDict *mndict=bcd->memberNameInfoSDict();
if (mndict)
{
Expand Down Expand Up @@ -11181,7 +11180,6 @@ void parseInput()
g_s.end();

g_s.begin("Searching for members imported via using declarations...\n");
findUsingDeclImports(rootNav);
// this should be after buildTypedefList in order to properly import
// used typedefs
findUsingDeclarations(rootNav);
Expand Down Expand Up @@ -11249,6 +11247,7 @@ void parseInput()
g_s.begin("Searching for member function documentation...\n");
findObjCMethodDefinitions(rootNav);
findMemberDocumentation(rootNav); // may introduce new members !
findUsingDeclImports(rootNav); // may introduce new members !

transferRelatedFunctionDocumentation();
transferFunctionDocumentation();
Expand Down

0 comments on commit 9468ede

Please sign in to comment.