diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2018-01-08 19:18:00 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2018-01-08 19:18:00 +0000 |
commit | d835e59211883ff1f55d6e89a3e7a4f49eb17e30 (patch) | |
tree | 07a42b861c0eecd3a390b55af324c63c71d83d9e /libcxx/test/std/utilities/function.objects/func.search/nothing_to_do.pass.cpp | |
parent | 8ede819858cd7e9b40c84ad85d8a07556ccc0a3e (diff) | |
download | bcm5719-llvm-d835e59211883ff1f55d6e89a3e7a4f49eb17e30.tar.gz bcm5719-llvm-d835e59211883ff1f55d6e89a3e7a4f49eb17e30.zip |
Add the C++17 extensions to std::search. Include the default searcher, but not the Boyer-Moore or Boyer-Moore-Horspool searcher (yet). BUT put the BM and BMH tests in place, marked to XFAIL. The other searchers will follow soon
llvm-svn: 322019
Diffstat (limited to 'libcxx/test/std/utilities/function.objects/func.search/nothing_to_do.pass.cpp')
-rw-r--r-- | libcxx/test/std/utilities/function.objects/func.search/nothing_to_do.pass.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libcxx/test/std/utilities/function.objects/func.search/nothing_to_do.pass.cpp b/libcxx/test/std/utilities/function.objects/func.search/nothing_to_do.pass.cpp new file mode 100644 index 00000000000..9a59227abdd --- /dev/null +++ b/libcxx/test/std/utilities/function.objects/func.search/nothing_to_do.pass.cpp @@ -0,0 +1,13 @@ +// -*- C++ -*- +//===----------------------------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +int main() +{ +} |