mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 21:31:04 +00:00
Bug 1424866 - Fix a warning: unnecessary parentheses in declaration of 'type name' r=gerald
MozReview-Commit-ID: CBOTKHgqDfV --HG-- extra : rebase_source : cc9d339008e7024b5406153bad37e4d717c7ae59
This commit is contained in:
parent
dec5949822
commit
530203c95e
@ -71,7 +71,7 @@ static_assert(!IsPointer<IsPointerTest>::value,
|
||||
"IsPointerTest not a pointer");
|
||||
static_assert(IsPointer<IsPointerTest*>::value,
|
||||
"IsPointerTest* is a pointer");
|
||||
static_assert(!IsPointer<bool(IsPointerTest::*)>::value,
|
||||
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…
Reference in New Issue
Block a user