Use 'REQUIRES: c++98 || c++03 || c++11 || c++14' instead of the deprecated 'REQUIRES-ANY: c++98, c++03, c++11, c++14'

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@298600 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow
2017-03-23 14:20:43 +00:00
parent a901b56e77
commit 699c414d73
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
// <algorithm> // <algorithm>
// REQUIRES-ANY: c++98, c++03, c++11, c++14 // REQUIRES: c++98 || c++03 || c++11 || c++14
// template<RandomAccessIterator Iter> // template<RandomAccessIterator Iter>
// requires ShuffleIterator<Iter> // requires ShuffleIterator<Iter>

View File

@@ -8,7 +8,7 @@
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
// <algorithm> // <algorithm>
// REQUIRES-ANY: c++98, c++03, c++11, c++14 // REQUIRES: c++98 || c++03 || c++11 || c++14
// template<RandomAccessIterator Iter, Callable<auto, Iter::difference_type> Rand> // template<RandomAccessIterator Iter, Callable<auto, Iter::difference_type> Rand>
// requires ShuffleIterator<Iter> // requires ShuffleIterator<Iter>