We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d9d3bc commit 309b397Copy full SHA for 309b397
src/doxygen.cpp
@@ -5720,10 +5720,12 @@ static void addMemberFunction(const Entry *root,
5720
if (md->isEnumValue() && (enumNamePos=className.findRev("::"))!=-1)
5721
{
5722
QCString enumName = className.mid(enumNamePos+2);
5723
- if (className.left(enumNamePos)==cd->name())
+ QCString fullScope = className.left(enumNamePos);
5724
+ if (!namespaceName.isEmpty()) fullScope.prepend(namespaceName+"::");
5725
+ if (fullScope==cd->name())
5726
5727
MemberName *enumMn=Doxygen::memberNameLinkedMap->find(enumName);
- //printf("enumMn(%s)=%p\n",qPrint(className),enumMn);
5728
+ //printf("enumMn(%s)=%p\n",qPrint(className),(void*)enumMn);
5729
if (enumMn)
5730
5731
for (const auto &emd : *enumMn)
0 commit comments