GNOME Bugzilla – Bug 734331
Strong enum members listed in containing namespace
Last modified: 2014-08-28 06:03:06 UTC
The members of strong enum are listed in namespace that contains enum itself. Example code: namespace test{ enum Weak { weak1, //!< 0 weak2 //!< 1 }; enum class Strong { strong1, //!< 0 strong2 //!< 1 }; } Expected result: strong1, strong2 are not documented in namespace "test". Only weak1, weak2 are listed as members of "test". Result: weak1, weak2, strong1 and strong2 are all documented as members of namespace "test".
Confirmed. Should be fixed in the next GIT update.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.8. Please verify if this is indeed the case. Reopen the bug if you think it is not fixed and please include any additional information that you think can be relevant (preferrably in the form of a self-contained example).
The bug is no longer present in version 1.8.8.