Chromium Code Reviews| Index: src/checks.h |
| diff --git a/src/checks.h b/src/checks.h |
| index 9d2db28d8f3106f1e781c2d69820089d7b82f0ad..a6df48e9147ff6ec5509b35cf9a04ee054e450dc 100644 |
| --- a/src/checks.h |
| +++ b/src/checks.h |
| @@ -268,7 +268,8 @@ template <int> class StaticAssertionHelper { }; |
| #define STATIC_CHECK(test) \ |
| typedef \ |
| StaticAssertionHelper<sizeof(StaticAssertion<static_cast<bool>((test))>)> \ |
| - SEMI_STATIC_JOIN(__StaticAssertTypedef__, __LINE__) |
| + SEMI_STATIC_JOIN(__StaticAssertTypedef__, __LINE__) \ |
| + __attribute__((unused)) // Silence GCC-4.8's warnings. |
|
Benedikt Meurer
2013/11/12 10:31:42
This will fail on Visual Studio. Please add an app
Jakob Kummerow
2013/11/12 12:01:29
Done.
|
| #endif |