Mark new tests as unsupported before C++11

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@242695 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow 2015-07-20 19:27:47 +00:00
parent bbe4245e63
commit f544330f34
4 changed files with 9 additions and 1 deletions

View File

@ -7,6 +7,8 @@
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
// UNSUPPORTED: c++98, c++03, c++11
// <functional> // <functional>
// default searcher // default searcher

View File

@ -9,6 +9,8 @@
// <functional> // <functional>
// UNSUPPORTED: c++98, c++03, c++11
// default searcher // default searcher
// template<class _ForwardIterator, class _BinaryPredicate = equal_to<>> // template<class _ForwardIterator, class _BinaryPredicate = equal_to<>>
// class default_searcher { // class default_searcher {
@ -39,7 +41,7 @@ struct count_equal
{ {
static unsigned count; static unsigned count;
template <class T> template <class T>
bool operator()(const T& x, const T& y) bool operator()(const T& x, const T& y) const
{++count; return x == y;} {++count; return x == y;}
}; };

View File

@ -7,6 +7,8 @@
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
// UNSUPPORTED: c++98, c++03, c++11
// <functional> // <functional>
// template<class ForwardIterator, class BinaryPredicate = equal_to<>> // template<class ForwardIterator, class BinaryPredicate = equal_to<>>

View File

@ -7,6 +7,8 @@
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
// UNSUPPORTED: c++98, c++03, c++11
// <functional> // <functional>
// template<class ForwardIterator, class BinaryPredicate = equal_to<>> // template<class ForwardIterator, class BinaryPredicate = equal_to<>>