mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 06:48:38 +09:00
Fix a warning with GCC 8: unnecessary parentheses in declaration of 'type name'
This commit is contained in:
parent
8c17dc77d0
commit
c8cdcbc5a7
1 changed files with 2 additions and 2 deletions
|
|
@ -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");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue