Resort back to SWIG-1.3.27 STL exception handling. The generic std_except.i does not work due to some problem with SWIG_exception

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8306 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2006-01-08 21:21:24 +00:00
commit 5ea4b63548

12
Lib/guile/std_except.i Normal file
View file

@ -0,0 +1,12 @@
// TODO: STL exception handling
// Note that the generic std_except.i file did not work
%{
#include <stdexcept>
%}
namespace std {
%ignore exception;
struct exception {
};
}