Commit f51d7c9d authored by Milo Yip's avatar Milo Yip Committed by GitHub

Merge pull request #669 from pah/fixes/666

readertest: Suppress "dangling-else" warning on GCC 7 and later
parents 6da92274 ad32940d
......@@ -28,7 +28,7 @@ RAPIDJSON_DIAG_PUSH
RAPIDJSON_DIAG_OFF(effc++)
RAPIDJSON_DIAG_OFF(float-equal)
RAPIDJSON_DIAG_OFF(missing-noreturn)
#if __GNUC__ >= 6
#if __GNUC__ >= 7
RAPIDJSON_DIAG_OFF(dangling-else)
#endif
#endif // __GNUC__
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment