From 46b35fe12e08a30f0f512ca672fb8a056fa96da8 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@8306 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/Lib/guile/std_except.i | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 SWIG/Lib/guile/std_except.i diff --git a/SWIG/Lib/guile/std_except.i b/SWIG/Lib/guile/std_except.i new file mode 100644 index 000000000..61bf481a3 --- /dev/null +++ b/SWIG/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 { + }; +} +