mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-19 09:26:59 +00:00
Fix failure on 03 bot
llvm-svn: 282134
This commit is contained in:
parent
202b453a8a
commit
c669522a26
@ -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
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user