Fix a warning with GCC 8: unnecessary parentheses in declaration of 'type name'

This commit is contained in:
trav90 2018-08-10 15:12:47 -05:00 committed by Roy Tam
commit c8cdcbc5a7

View file

@ -70,8 +70,8 @@ static_assert(!IsPointer<IsPointerTest>::value,
"IsPointerTest not a pointer");
static_assert(IsPointer<IsPointerTest*>::value,
"IsPointerTest* is a pointer");
static_assert(!IsPointer<bool(IsPointerTest::*)>::value,
"bool(IsPointerTest::*) not a pointer");
static_assert(!IsPointer<bool(IsPointerTest::*)()>::value,
"bool(IsPointerTest::*)() not a pointer");
static_assert(!IsPointer<void(IsPointerTest::*)(void)>::value,
"void(IsPointerTest::*)(void) not a pointer");