mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-23 22:56:50 +00:00
13 lines
182 B
OpenEdge ABL
13 lines
182 B
OpenEdge ABL
|
// TODO: STL exception handling
|
||
|
// Note that the generic std_except.i file did not work
|
||
|
%{
|
||
|
#include <stdexcept>
|
||
|
%}
|
||
|
|
||
|
namespace std {
|
||
|
%ignore exception;
|
||
|
struct exception {
|
||
|
};
|
||
|
}
|
||
|
|