"tests/test_class.cpp" did not exist on "5fffe200e337f1a1bb13034fac29a63ad6eae304"
Commit d15b217f authored by Jason Rhinelander's avatar Jason Rhinelander
Browse files

Only disable -Wnoexcept-type on gcc >= 7

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