[libcxx] r291031 - Fix verify test on 32 bit systems

Eric Fiselier via cfe-commits cfe-commits at lists.llvm.org
Wed Jan 4 15:30:06 PST 2017


Author: ericwf
Date: Wed Jan  4 17:30:06 2017
New Revision: 291031

URL: http://llvm.org/viewvc/llvm-project?rev=291031&view=rev
Log:
Fix verify test on 32 bit systems

Modified:
    libcxx/trunk/test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple_size_incomplete.fail.cpp

Modified: libcxx/trunk/test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple_size_incomplete.fail.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple_size_incomplete.fail.cpp?rev=291031&r1=291030&r2=291031&view=diff
==============================================================================
--- libcxx/trunk/test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple_size_incomplete.fail.cpp (original)
+++ libcxx/trunk/test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple_size_incomplete.fail.cpp Wed Jan  4 17:30:06 2017
@@ -51,7 +51,7 @@ int main()
   // Test that tuple_size<const T> is not incomplete when tuple_size<T>::value
   // is well-formed but not convertible to size_t.
   {
-    // expected-error at __tuple:* 1 {{value of type 'void ()' is not implicitly convertible to 'unsigned long'}}
+    // expected-error at __tuple:* 1 {{value of type 'void ()' is not implicitly convertible to}}
     (void)std::tuple_size<const Dummy2>::value; // expected-note {{here}}
   }
   // Test that tuple_size<const T> generates an error when tuple_size<T> is




More information about the cfe-commits mailing list