test-suite fixes for compilers that don't support vararg macros
Split TESTCASE_THROW into multiple macros taking different number of arguments. Fixes Visual Studio compiler errors.
This commit is contained in:
parent
1c46662c39
commit
196a965067
19 changed files with 127 additions and 117 deletions
|
|
@ -6,9 +6,9 @@
|
|||
%module cplusplus_throw
|
||||
|
||||
// throw is invalid in C++17 and later, only SWIG to use it
|
||||
#define TESTCASE_THROW(TYPES...) throw(TYPES)
|
||||
#define TESTCASE_THROW1(T1) throw(T1)
|
||||
%{
|
||||
#define TESTCASE_THROW(TYPES...)
|
||||
#define TESTCASE_THROW1(T1)
|
||||
%}
|
||||
|
||||
%nodefaultctor;
|
||||
|
|
@ -20,8 +20,8 @@ class Foo { };
|
|||
class Bar {
|
||||
public:
|
||||
void baz() const { };
|
||||
void foo() TESTCASE_THROW(Foo) { };
|
||||
void bazfoo() const TESTCASE_THROW(int) { };
|
||||
void foo() TESTCASE_THROW1(Foo) { };
|
||||
void bazfoo() const TESTCASE_THROW1(int) { };
|
||||
};
|
||||
|
||||
%}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue