diff options
author | Eric Fiselier <eric@efcs.ca> | 2017-01-04 23:30:06 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2017-01-04 23:30:06 +0000 |
commit | a00db36b8678c6873b3ffbf9ffd64c66890695c6 (patch) | |
tree | 51a074757635158b1a5e5a75401d23ec1380271f /libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper | |
parent | 1cf4541c4f3ae2f6eaadb6d7972cf8cc71118965 (diff) | |
download | bcm5719-llvm-a00db36b8678c6873b3ffbf9ffd64c66890695c6.tar.gz bcm5719-llvm-a00db36b8678c6873b3ffbf9ffd64c66890695c6.zip |
Fix verify test on 32 bit systems
llvm-svn: 291031
Diffstat (limited to 'libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper')
-rw-r--r-- | libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple_size_incomplete.fail.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple_size_incomplete.fail.cpp b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple_size_incomplete.fail.cpp index 2e807e35b9e..81800183399 100644 --- a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple_size_incomplete.fail.cpp +++ b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple_size_incomplete.fail.cpp @@ -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@__tuple:* 1 {{value of type 'void ()' is not implicitly convertible to 'unsigned long'}} + // expected-error@__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 |