summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std
diff options
context:
space:
mode:
authorMarshall Clow <mclow.lists@gmail.com>2016-09-22 03:25:22 +0000
committerMarshall Clow <mclow.lists@gmail.com>2016-09-22 03:25:22 +0000
commitc669522a261dbed599f9d60e7ce11d9c1491903a (patch)
tree98002071caa23809d4e6daf4030c25a2f065bd4e /libcxx/test/std
parent202b453a8a5ce28f9d36b1c012d1c7c110c2e989 (diff)
downloadbcm5719-llvm-c669522a261dbed599f9d60e7ce11d9c1491903a.tar.gz
bcm5719-llvm-c669522a261dbed599f9d60e7ce11d9c1491903a.zip
Fix failure on 03 bot
llvm-svn: 282134
Diffstat (limited to 'libcxx/test/std')
-rw-r--r--libcxx/test/std/utilities/memory/allocator.uses/allocator.uses.trait/uses_allocator.pass.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/utilities/memory/allocator.uses/allocator.uses.trait/uses_allocator.pass.cpp b/libcxx/test/std/utilities/memory/allocator.uses/allocator.uses.trait/uses_allocator.pass.cpp
index 919c56bc7d7..2831399c304 100644
--- a/libcxx/test/std/utilities/memory/allocator.uses/allocator.uses.trait/uses_allocator.pass.cpp
+++ b/libcxx/test/std/utilities/memory/allocator.uses/allocator.uses.trait/uses_allocator.pass.cpp
@@ -42,9 +42,9 @@ template <bool Expected, class T, class A>
void
test()
{
- static_assert(std::uses_allocator<T, A>::value == Expected, "");
+ static_assert((std::uses_allocator<T, A>::value == Expected), "");
#if TEST_STD_VER > 14
- static_assert(std::uses_allocator_v<T, A> == Expected, "");
+ static_assert((std::uses_allocator_v<T, A> == Expected), "");
#endif
}
OpenPOWER on IntegriCloud