Commit d15b217f by Jason Rhinelander

Only disable -Wnoexcept-type on gcc >= 7

parent 616e3d8f
...@@ -31,7 +31,9 @@ ...@@ -31,7 +31,9 @@
# pragma GCC diagnostic ignored "-Wmissing-field-initializers" # pragma GCC diagnostic ignored "-Wmissing-field-initializers"
# pragma GCC diagnostic ignored "-Wstrict-aliasing" # pragma GCC diagnostic ignored "-Wstrict-aliasing"
# pragma GCC diagnostic ignored "-Wattributes" # pragma GCC diagnostic ignored "-Wattributes"
# pragma GCC diagnostic ignored "-Wnoexcept-type" # if __GNUC__ >= 7
# pragma GCC diagnostic ignored "-Wnoexcept-type"
# endif
#endif #endif
#include "attr.h" #include "attr.h"
......
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