From 614f0306f1b9b2a2a3b498c11bf0b19af7bddae2 Mon Sep 17 00:00:00 2001 From: Logan Johnson Date: Fri, 20 Dec 2002 16:57:06 +0000 Subject: [PATCH] Added Ruby-specific warning filter for template_arg_replace test case. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4216 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Examples/test-suite/template_arg_replace.i | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Examples/test-suite/template_arg_replace.i b/Examples/test-suite/template_arg_replace.i index cc9514c2e..536315ce3 100644 --- a/Examples/test-suite/template_arg_replace.i +++ b/Examples/test-suite/template_arg_replace.i @@ -1,5 +1,7 @@ %module template_arg_replace +%warnfilter(801) Matrix; /* Ruby, wrong class name */ + %inline %{ template class Matrix { @@ -9,5 +11,4 @@ public: %} %template (matrix33f) Matrix; -