Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
182 B

  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. }