summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/containers
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2019-06-24 21:46:05 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2019-06-24 21:46:05 +0000
commit66e6e37447b183b1c8bac9330a4658530d2d49e6 (patch)
tree3ad7b4934d5e2eae0cd42fbbdddd17b931cf8d5e /libcxx/test/std/containers
parent3081f78776ac4210dba16469f05a784fcb6fe7a8 (diff)
downloadbcm5719-llvm-66e6e37447b183b1c8bac9330a4658530d2d49e6.tar.gz
bcm5719-llvm-66e6e37447b183b1c8bac9330a4658530d2d49e6.zip
Fix test failures when using a custom ABI namespace.
llvm-svn: 364239
Diffstat (limited to 'libcxx/test/std/containers')
-rw-r--r--libcxx/test/std/containers/views/span.tuple/tuple_size.fail.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/containers/views/span.tuple/tuple_size.fail.cpp b/libcxx/test/std/containers/views/span.tuple/tuple_size.fail.cpp
index 1d3d5b39878..d7a54403b29 100644
--- a/libcxx/test/std/containers/views/span.tuple/tuple_size.fail.cpp
+++ b/libcxx/test/std/containers/views/span.tuple/tuple_size.fail.cpp
@@ -15,7 +15,7 @@
int main(int, char**)
{
- (void) std::tuple_size<std::span<double>>::value; // expected-error-re {{implicit instantiation of undefined template 'std::__1::tuple_size<std::__1::span<double, {{.*}}}}
- (void) std::tuple_size<std::span<int>>::value; // expected-error-re {{implicit instantiation of undefined template 'std::__1::tuple_size<std::__1::span<int, {{.*}}}}
+ (void) std::tuple_size<std::span<double>>::value; // expected-error-re {{implicit instantiation of undefined template 'std:{{.*}}:tuple_size<std:{{.*}}:span<double, {{.*}}}}
+ (void) std::tuple_size<std::span<int>>::value; // expected-error-re {{implicit instantiation of undefined template 'std:{{.*}}:tuple_size<std:{{.*}}:span<int, {{.*}}}}
return 0;
}
OpenPOWER on IntegriCloud