Skip to content

Commit 8342610

Browse files
committed
issue doxygen#11281 Alias via using within nested namespace results in incorrect symbol name.
1 parent 99f2eae commit 8342610

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doxygen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2221,7 +2221,7 @@ static void findUsingDeclImports(const Entry *root)
22212221
const Definition *def = resolver.resolveSymbol(root->name.startsWith("::") ? nullptr : scope,root->name);
22222222
if (def && def->definitionType()==Definition::TypeMember)
22232223
{
2224-
int i=root->name.find("::");
2224+
int i=root->name.findRev("::");
22252225
QCString memName;
22262226
if (i!=-1)
22272227
{

0 commit comments

Comments
 (0)