I'm trying to document the following SFINAE overloaded functions (both of them) with Doxygen 1.8.11:
template <typename T, typename std::enable_if< std::is_integral<T>::value, int >::type = 0>
auto func(T x);
template <typename T, typename std::enable_if< std::is_floating_point<T>::value, int >::type = 0>
auto func(T x);
However the generated documentation contains only the first occurrence.
Is there any way to document multiple SFINAE overloaded functions in doxygen?