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 676971 - HIDE_SCOPE_NAMES also hides template declarations of template member functions in detail description
HIDE_SCOPE_NAMES also hides template declarations of template member function...
Status: RESOLVED OBSOLETE
Product: doxygen
Classification: Other
Component: documentation
1.8.1-SVN
Other Linux
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
[moved_to_github]
Depends on:
Blocks:
 
 
Reported: 2012-05-28 15:22 UTC by Philipp Moeller
Modified: 2018-07-30 10:55 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Philipp Moeller 2012-05-28 15:22:19 UTC
Using HIDE_SCOPE_NAMES will not only hide the scope in a detail description of a member function but also the template parameters itself.

e.g.

/// A foo class.
class foo {
  /// A foo template member function.
  template<typename InputIterator>
  void fun(InputIterator begin, InputIterator end);
};

The detail description of fun with HIDE_SCOPE_NAMES = yes will be

void fun(InputIterator begin, InputIterator end);

without

template<typename InputIterator>
foo::fun(InputIterator begin, InputIterator end)

The second case gets rather ugly for template members of class templates.
It would be better if the template<...> weren't omitted in if
HIDE_SCOPE_NAMES = yes is set and maybe another option to hide those were provided.
Comment 1 André Klapper 2018-07-30 10:55:38 UTC
As discussed in https://github.com/doxygen/doxygen/pull/734 , Doxygen has moved its issue tracking to 

   https://github.com/doxygen/doxygen/issues

All Doxygen tickets in GNOME Bugzilla have been migrated to Github. You can subscribe and participate in the new ticket in Github. You can find the corresponding Github ticket by searching for its Bugzilla ID (number) in Github.

Hence I am closing this GNOME Bugzilla ticket.
Please use the corresponding ticket in Github instead. Thanks a lot!