2019-08-20 Jonathan Wakely <jwakely@redhat.com>
+ * include/std/numeric (reduce): Fix Doxygen markup.
+
PR libstdc++/91371
* include/std/type_traits (is_function): Simplify definition. Remove
partial specializations for function types.
* @return The final sum.
*
* Reduce the values in the range `[first,last)` using addition.
- * Equivalent to calling std::reduce(first, last, init, std::plus<>())`.
+ * Equivalent to calling `std::reduce(first, last, init, std::plus<>())`.
*/
template<typename _InputIterator, typename _Tp>
inline _Tp
*
* Reduce the values in the range `[first,last)` using addition, with
* an initial value of `T{}`, where `T` is the iterator's value type.
- * Equivalent to calling std::reduce(first, last, T{}, std::plus<>())`.
+ * Equivalent to calling `std::reduce(first, last, T{}, std::plus<>())`.
*/
template<typename _InputIterator>
inline typename iterator_traits<_InputIterator>::value_type