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 709921 - position of linebreak in template argument list affects inheritance relation
position of linebreak in template argument list affects inheritance relation
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: general
1.8.5
Other Linux
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2013-10-11 15:46 UTC by Joachim Reichel
Modified: 2013-12-24 19:00 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Joachim Reichel 2013-10-11 15:46:44 UTC
Steps to reproduce with default-generated Doxyfile of 1.8.5:

/// class Base
class Base {};

/// class Mixin
template<int ID,class T> class Mixin : public T {};

/// class Derived
class Derived : public Mixin<42,Base> {};

/// class Leaf1
class Leaf1 : public Mixin<43,
Derived> {};

/// class Leaf2
class Leaf2 : public Mixin<44
,Derived> {};



Actual results:

Inheritance diagram for Leaf2 is broken (incomplete). See also diagram for Derived.

Expected results:

Inheritance diagram for Leaf2 should look similar to Leaf1.
Comment 1 Dimitri van Heesch 2013-10-12 10:41:10 UTC
Confirmed. Should be fixed in the next GIT update.
Comment 2 Dimitri van Heesch 2013-12-24 19:00:12 UTC
This bug was previously marked ASSIGNED, which means it should be fixed in
doxygen version 1.8.6. 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).