GNOME Bugzilla – Bug 700693
Duplicate entry for class template member function with no parameter
Last modified: 2013-08-23 15:04:37 UTC
Created attachment 244757 [details] Demonstration header file and configuration file. When template member function has no parameters doxygen generates duplicate entries in the documentation. For example this: /*! \brief AClass is documented. */ class AClass { public: template<typename C> class AChildClass; //! \name GroupA //!@{ template<typename C> AChildClass<C> amemberfunc(); //!@} }; /*! \brief AChildClass is documented. */ template<typename C> class AClass::AChildClass { }; /*! \brief Member is documented. */ template<typename C> AClass::AChildClass< C > AClass::amemberfunc() { return something(); } results in amemberfunc showing in both under GroupA and under public. The above provided as an example with matching config file in the attached.
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.5. 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.