Fix failure on 03 bot

llvm-svn: 282134
This commit is contained in:
Marshall Clow 2016-09-22 03:25:22 +00:00
parent 202b453a8a
commit c669522a26

View File

@ -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
}