diff options
Diffstat (limited to 'libstdc++-v3/include/bits/algorithmfwd.h')
-rw-r--r-- | libstdc++-v3/include/bits/algorithmfwd.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libstdc++-v3/include/bits/algorithmfwd.h b/libstdc++-v3/include/bits/algorithmfwd.h index fa4e72cd412..4b78983517e 100644 --- a/libstdc++-v3/include/bits/algorithmfwd.h +++ b/libstdc++-v3/include/bits/algorithmfwd.h @@ -49,6 +49,7 @@ inplace_merge is_heap (C++0x) is_heap_until (C++0x) + is_partitioned (C++0x) is_sorted (C++0x) is_sorted_until (C++0x) iter_swap @@ -231,6 +232,10 @@ _GLIBCXX_BEGIN_NAMESPACE(std) _RAIter is_heap_until(_RAIter, _RAIter, _Compare); + template<typename _IIter, typename _Predicate> + bool + is_partitioned(_IIter, _IIter, _Predicate); + template<typename _FIter> bool is_sorted(_FIter, _FIter); |