GNOME Bugzilla – Bug 757812
Doxygen do not support comparison angle bracket in template
Last modified: 2016-02-29 09:02:52 UTC
In the following code: struct foo { void a() {} template<int I, typename Enable = void> struct test_traits : std::false_type {}; template<int I> struct test_traits<I, std::enable_if_t<(I < 3)>> : std::true_type {}; void b() {} }; doxygen only documents a() and not b(). Anything after the specialization is ignored without any warning. Replacing (I < 3) by (I == 3) makes it work.
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.11. 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 (preferably in the form of a self-contained example).
I can confirm that it works adequately now. Thanks.