ruby warning suppression

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9267 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2006-09-13 20:31:42 +00:00
commit d66494c1b1
2 changed files with 2 additions and 2 deletions

View file

@ -49,7 +49,7 @@ typedef struct _Foo {
%}
%warnfilter(SWIGWARN_RUBY_WRONG_NAME) iFoo; /* Ruby, wrong constant name */
%warnfilter(SWIGWARN_RUBY_WRONG_NAME) _iFoo;
#ifndef __cplusplus
%inline %{

View file

@ -23,7 +23,7 @@ class ex2 : public myException
%}
%inline %{
class impl
class Impl
{
public:
void f1() throw (myException) { ex1 e; throw e; }