summaryrefslogtreecommitdiff
path: root/libstdc++-v3/include/parallel
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2014-06-14 17:33:53 +0100
committerJonathan Wakely <redi@gcc.gnu.org>2014-06-14 17:33:53 +0100
commit005413491961bacb0512dec2e28af53ff95ba291 (patch)
tree8d5340215e09d2307660fb1671e964da9d21cfe6 /libstdc++-v3/include/parallel
parente8043fa674add9511ee418536ad48161bd206372 (diff)
user.cfg.in (INPUT): Add C++14 headers.
* doc/doxygen/user.cfg.in (INPUT): Add C++14 headers. * include/bits/random.h (subtract_with_carry_engine): Fix Doxygen warnings. * include/bits/shared_ptr.h (shared_ptr): Likewise. * include/bits/unordered_map.h (unordered_map, unordered_multimap): Likewise. * include/bits/unordered_set.h (unordered_set, unordered_multiset): Likewise. * include/parallel/list_partition.h (__parallel::list_partition): Likewise. * include/std/iomanip (quoted): Likewise. * include/tr2/dynamic_bitset (dynamic_bitset): Likewise. From-SVN: r211670
Diffstat (limited to 'libstdc++-v3/include/parallel')
-rw-r--r--libstdc++-v3/include/parallel/list_partition.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libstdc++-v3/include/parallel/list_partition.h b/libstdc++-v3/include/parallel/list_partition.h
index c9452a4df74..a8d6143927b 100644
--- a/libstdc++-v3/include/parallel/list_partition.h
+++ b/libstdc++-v3/include/parallel/list_partition.h
@@ -90,10 +90,10 @@ namespace __gnu_parallel
* @param __f Functor to be applied to each element by traversing __it
* @param __oversampling Oversampling factor. If 0, then the
* partitions will differ in at most
- * \sqrt{\mathrm{__end} - \mathrm{__begin}}
- * __elements. Otherwise, the ratio between the
+ * \f$\sqrt{\mathrm{end} - \mathrm{begin}}\f$
+ * elements. Otherwise, the ratio between the
* longest and the shortest part is bounded by
- * 1/(\mathrm{__oversampling} \cdot \mathrm{num\_parts})
+ * \f$1/(\mathrm{oversampling} \cdot \mathrm{num\_parts})\f$
* @return Length of the whole sequence.
*/
template<typename _IIter, typename _FunctorType>