diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2015-09-08 17:59:09 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2015-09-08 17:59:09 +0000 |
commit | f44bd93becccaefa92afc38b74335d1be3c5074b (patch) | |
tree | 281ae3ad846e0cf865389982f15874053c53e319 /libcxx/test/std/experimental/algorithms/alg.search | |
parent | 35f673ef08bb4edc90ca711267ac628867bcbace (diff) | |
download | bcm5719-llvm-f44bd93becccaefa92afc38b74335d1be3c5074b.tar.gz bcm5719-llvm-f44bd93becccaefa92afc38b74335d1be3c5074b.zip |
Implementation of Boyer-Moore and Boyer-Moore-Horspool searchers for the LFTS.
llvm-svn: 247036
Diffstat (limited to 'libcxx/test/std/experimental/algorithms/alg.search')
-rw-r--r-- | libcxx/test/std/experimental/algorithms/alg.search/search.pass.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libcxx/test/std/experimental/algorithms/alg.search/search.pass.cpp b/libcxx/test/std/experimental/algorithms/alg.search/search.pass.cpp index ce27225f284..60a44e4c26a 100644 --- a/libcxx/test/std/experimental/algorithms/alg.search/search.pass.cpp +++ b/libcxx/test/std/experimental/algorithms/alg.search/search.pass.cpp @@ -7,6 +7,8 @@ // //===----------------------------------------------------------------------===// +// UNSUPPORTED: c++98, c++03, c++11 + // <algorithm> // template<class ForwardIterator, class Searcher> |