diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2018-01-10 16:25:04 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2018-01-10 16:25:04 +0000 |
commit | 6b40646bec8b534cd1ac25d6d6ec7696b75bb3c2 (patch) | |
tree | d247eac47a0430762587b4dc990cf84bbb00270b /libcxx | |
parent | 8b63227279de6580a85f585e19bdfe8ad8b16e8e (diff) | |
download | bcm5719-llvm-6b40646bec8b534cd1ac25d6d6ec7696b75bb3c2.tar.gz bcm5719-llvm-6b40646bec8b534cd1ac25d6d6ec7696b75bb3c2.zip |
Fix misspelled macro name - thanks to andrew@ispras.ru for the catch
llvm-svn: 322196
Diffstat (limited to 'libcxx')
-rw-r--r-- | libcxx/test/std/algorithms/alg.nonmodifying/alg.search/search.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/search.pass.cpp b/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/search.pass.cpp index 601bc6f0012..463d87bb41d 100644 --- a/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/search.pass.cpp +++ b/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/search.pass.cpp @@ -86,7 +86,7 @@ int main() test<random_access_iterator<const int*>, bidirectional_iterator<const int*> >(); test<random_access_iterator<const int*>, random_access_iterator<const int*> >(); -#if TEST_STD_VERS > 14 +#if TEST_STD_VER > 14 { typedef int * RI; static_assert((std::is_same<RI, decltype(std::search(RI(), RI(), MySearcher()))>::value), "" ); |