From 5ea4b635487829900ee4a92c2b727cf889cb1b16 Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Sun, 8 Jan 2006 21:21:24 +0000 Subject: [PATCH] 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 --- Lib/guile/std_except.i | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Lib/guile/std_except.i diff --git a/Lib/guile/std_except.i b/Lib/guile/std_except.i new file mode 100644 index 000000000..61bf481a3 --- /dev/null +++ b/Lib/guile/std_except.i @@ -0,0 +1,12 @@ +// TODO: STL exception handling +// Note that the generic std_except.i file did not work +%{ +#include +%} + +namespace std { + %ignore exception; + struct exception { + }; +} +