Author: marshall
Date: Wed Jan 10 08:25:04 2018
New Revision: 322196

URL: http://llvm.org/viewvc/llvm-project?rev=322196&view=rev
Log:
Fix misspelled macro name - thanks to and...@ispras.ru for the catch

Modified:
    libcxx/trunk/test/std/algorithms/alg.nonmodifying/alg.search/search.pass.cpp

Modified: 
libcxx/trunk/test/std/algorithms/alg.nonmodifying/alg.search/search.pass.cpp
URL: 
http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/algorithms/alg.nonmodifying/alg.search/search.pass.cpp?rev=322196&r1=322195&r2=322196&view=diff
==============================================================================
--- 
libcxx/trunk/test/std/algorithms/alg.nonmodifying/alg.search/search.pass.cpp 
(original)
+++ 
libcxx/trunk/test/std/algorithms/alg.nonmodifying/alg.search/search.pass.cpp 
Wed Jan 10 08:25:04 2018
@@ -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), "" );


_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to