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:
Sylvestre Ledru 2018-01-03 17:43:04 +01:00
parent dec5949822
commit 530203c95e

View File

@ -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");