diff --git a/SWIG/Examples/test-suite/preproc_5.i b/SWIG/Examples/test-suite/preproc_5.i index 68ba5afa8..bc49a50cc 100644 --- a/SWIG/Examples/test-suite/preproc_5.i +++ b/SWIG/Examples/test-suite/preproc_5.i @@ -1,5 +1,10 @@ %module preproc_5 +%warnfilter(801) a; // Ruby, wrong constant name +%warnfilter(801) b; // Ruby, wrong constant name +%warnfilter(801) c; // Ruby, wrong constant name +%warnfilter(801) d; // Ruby, wrong constant name + // Various preprocessor bits of nastiness. diff --git a/SWIG/Examples/test-suite/template_extend1.i b/SWIG/Examples/test-suite/template_extend1.i index 6c3574f93..e6a8673a8 100644 --- a/SWIG/Examples/test-suite/template_extend1.i +++ b/SWIG/Examples/test-suite/template_extend1.i @@ -2,6 +2,9 @@ %module template_extend1 +%warnfilter(801) Baz; // Ruby, wrong class name +%warnfilter(801) Baz; // Ruby, wrong class name + %{ namespace Quux { template class Baz {}; diff --git a/SWIG/Examples/test-suite/template_extend2.i b/SWIG/Examples/test-suite/template_extend2.i index af973412e..396223e25 100644 --- a/SWIG/Examples/test-suite/template_extend2.i +++ b/SWIG/Examples/test-suite/template_extend2.i @@ -1,6 +1,9 @@ // Another evil Luigi test %module template_extend2 +%warnfilter(801) Baz; // Ruby, wrong class name +%warnfilter(801) Baz; // Ruby, wrong class name + %{ namespace Quux { template class Baz {};