Suppress warning 325 "Nested class not currently supported (Foo

ignored)" when Foo has already been explicitly ignored with
"%ignore".
This commit is contained in:
Olly Betts 2015-05-05 18:06:04 +12:00
commit b19d506db7
3 changed files with 16 additions and 9 deletions

View file

@ -100,4 +100,9 @@ void overloadinline2(const int *) {}
void overload5(int *) {}
void overload5(const int *) {}
%ignore Outer2::QuietInner;
struct Outer2 {
struct QuietInner {
VARIABLEMACRO(MyInnerVar)
};
};