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 { + }; +} +