GNOME Bugzilla – Bug 709870
Broken links on members HTML page when using BUILTIN_STL_SUPPORT
Last modified: 2013-12-24 18:59:21 UTC
Created attachment 256960 [details] dox.tar.gz Given a simple input file, inputs/test.h (also in the attachment): #include <vector> //! Test class template<class ValueT> class Test : public std::vector< ValueT > { }; and a simple doxygen config that differs from the output of 'doxygen -s' only by BUILTIN_STL_SUPPORT = YES INPUT = inputs FILE_PATTERNS = *.h GENERATE_LATEX = NO the output HTML file classTest-members.html contains an entry for an 'elements' member in the class, inherited from std::vector. It looks a little like: elements (defined in std::vector< T >) std::vector< T > The text in the first column is fine (other than the member being there in the first place - I don't think std::vector has an 'elements' member). But the second column is a hyperlink, to classstd_1_1vector.html. This file doesn't exist. Ideally, the std::vector< T > in the second column would be unlinked, same as that in the first column.
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.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).