[libcxx] r322196 - Fix misspelled macro name - thanks to andrew at ispras.ru for the catch

Marshall Clow via cfe-commits cfe-commits at lists.llvm.org
Wed Jan 10 08:25:04 PST 2018


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 andrew at 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), "" );




More information about the cfe-commits mailing list