summaryrefslogtreecommitdiff
path: root/Examples/test-suite/cpp_enum.i
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/cpp_enum.i')
-rw-r--r--Examples/test-suite/cpp_enum.i6
1 files changed, 6 insertions, 0 deletions
diff --git a/Examples/test-suite/cpp_enum.i b/Examples/test-suite/cpp_enum.i
index cb212615a..548c65de4 100644
--- a/Examples/test-suite/cpp_enum.i
+++ b/Examples/test-suite/cpp_enum.i
@@ -6,6 +6,12 @@ The primary purpose of this testcase is to ensure that enums used along with the
%inline %{
+#if __GNUC__ >= 5 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)
+/* for anonymous enums */
+/* dereferencing type-punned pointer will break strict-aliasing rules [-Werror=strict-aliasing] */
+#pragma GCC diagnostic ignored "-Wstrict-aliasing"
+#endif
+
enum SOME_ENUM {ENUM_ONE, ENUM_TWO};
struct StructWithEnums {