After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 722668 - Documenting matching enumeration types out of line does not work in different namespaces
Documenting matching enumeration types out of line does not work in different...
Status: RESOLVED DUPLICATE of bug 722667
Product: doxygen
Classification: Other
Component: general
1.8.6
Other Linux
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2014-01-21 01:22 UTC by Reece H. Dunn
Modified: 2014-01-21 01:27 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Reece H. Dunn 2014-01-21 01:22:04 UTC
Given:

	namespace test
	{
		namespace a
		{
			enum event_type {};
		}
		namespace b
		{
			enum event_type {};
		}
	}

	/**
	\enum  test::a::event_type
	\brief This is a::event_type.

	\enum  test::b::event_type
	\brief This is b::event_type.
	*/

The documentation for test::b::event_type is added to test::a::event_type instead. This is present at least as far back as 1.8.4.
Comment 1 Reece H. Dunn 2014-01-21 01:27:26 UTC
Sorry, my internet connection was being slow so I did not know the bug was reported.

*** This bug has been marked as a duplicate of bug 722667 ***