Added Ruby-specific warning filter for template_arg_replace test case.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4216 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Logan Johnson 2002-12-20 16:57:06 +00:00
commit 3787b0daf7

View file

@ -1,5 +1,7 @@
%module template_arg_replace
%warnfilter(801) Matrix<float, 3, 3>; /* Ruby, wrong class name */
%inline %{
template <typename T, int r, int c> class Matrix {
@ -9,5 +11,4 @@ public:
%}
%template (matrix33f) Matrix<float,3, 3>;