2019-08-20 Jonathan Wakely <jwakely@redhat.com>
+ * include/std/numeric (reduce): Fix Doxygen markup.
+
Backport from mainline
2019-06-19 Jonathan Wakely <jwakely@redhat.com>
* @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