GNOME Bugzilla – Bug 681976
Constructor noexcept specification (C++11) parsed as initializer list
Last modified: 2012-12-26 16:09:13 UTC
Doxygen fails to recognize nontrivial noexcept specification in constructors, mistaking it for initializer list if there are colons present. Example code: template<typename T> class Test { public: Test() noexcept ( noexcept(T::T()) ) = default; }; produces warning about meeting semicolon (the one after default) in initializer list (that is not actually present, but doxygen thinks it starts after "T:").
Confirmed. Should be fixed in the next subversion update.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.3. 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.