diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 3fa14ac08de..963b874a4d2 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2009-09-25 Johannes Singler + + * include/parallel/partition.h (__parallel_nth_element): + Correct comment. + 2009-09-24 Johannes Singler * include/parallel/algo.h: Uglify internal identifiers; diff --git a/libstdc++-v3/include/parallel/partition.h b/libstdc++-v3/include/parallel/partition.h index c8d2965dedb..11362939fc8 100644 --- a/libstdc++-v3/include/parallel/partition.h +++ b/libstdc++-v3/include/parallel/partition.h @@ -358,12 +358,11 @@ template std::swap(*__pivot_pos, *(__end - 1)); __pivot_pos = __end - 1; - // XXX _Compare must have first__ValueType, second__ValueType, - // _ResultType - // _Compare == __gnu_parallel::_Lexicographic > + // _Compare must have first_value_type, second_value_type, + // result_type + // _Compare == + // __gnu_parallel::_Lexicographic > // __pivot_pos == std::pair* - // XXX binder2nd only for _RAIters?? __gnu_parallel::binder2nd<_Compare, _ValueType, _ValueType, bool> __pred(__comp, *__pivot_pos);