GNOME Bugzilla – Bug 700202
Template static constexpr function member not recognized
Last modified: 2013-05-20 18:03:13 UTC
There is a problem with matching template static constexpr function member in the following : --------------------------------------------------------------------- #include <iostream> /// \brief Class class Class { public: template <typename Type> static constexpr Type function(); }; /// \brief Function template <typename Type> constexpr Type Class::function() { return 0; } int main() { return 0; } --------------------------------------------------------------------- Doxygen generates two documentations for function() including an empty one.
I've fixed 700696 in GIT and this fix also works for this problem. *** This bug has been marked as a duplicate of bug 700696 ***