GNOME Bugzilla – Bug 722940
classes with same name in different namespace adding to same group
Last modified: 2015-01-01 10:57:26 UTC
I have several c++ classes with the same name in different namespaces and they all should be in the same namespace/group. Example: /** * \defgroup test */ namespace temp1 { /** * \ingroup test */ class MyClass {}; } namespace temp2 { /** * \ingroup test */ class MyClass {}; } /** * \ingroup test */ class MyClass {}; The group test only contains the first of the three MyClass classes. Expected: see all three of them. Variations with \addtogroup don't work. Changing the name MyClass to MyClass1 works. This is tested with the latest release and the git HEAD of today.
> "and they all should be in the same namespace/group." Sorry, I meant to say "and they all should be in the same module/group."
I've proposed a workaround as pull request: https://github.com/doxygen/doxygen/pull/261
Pull request has been merged. Available in 1.8.9.