Suppress pedantic warnings in testcases

This commit is contained in:
William S Fulton 2015-02-06 08:10:10 +00:00
commit ec1eac5b72
3 changed files with 18 additions and 0 deletions

View file

@ -49,6 +49,12 @@
%warnfilter(SWIGWARN_PARSE_NAMED_NESTED_CLASS) Outer2::IgnoreMe;
%inline %{
#if defined(__GNUC__)
/* ISO C++ prohibits anonymous structs [-Werror=pedantic] */
#pragma GCC diagnostic ignored "-Wpedantic"
#endif
struct Outer {
typedef int Integer;
///////////////////////////////////////////