PageRenderTime 39ms CodeModel.GetById 11ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/Lib/guile/std_except.i

#
Swig | 12 lines | 10 code | 2 blank | 0 comment | 0 complexity | c0f970c665ef0b6ab59b22824947f9bc MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. // TODO: STL exception handling
  2. // Note that the generic std_except.i file did not work
  3. %{
  4. #include <stdexcept>
  5. %}
  6. namespace std {
  7. %ignore exception;
  8. struct exception {
  9. };
  10. }