replace code with warning that it does not work for UTL languages

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9517 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2006-11-02 18:46:12 +00:00
commit 358cbf0097

View file

@ -28,6 +28,7 @@ class ex2 : public myException
};
%}
#if !defined(SWIGUTL)
%inline %{
class Impl
{
@ -36,4 +37,7 @@ class Impl
void f2() throw (myException) { ex2 e; throw e; }
};
%}
#else
#warning "UTL needs fixing for partial exception information"
#endif