2. -noexcept flag disables generating exception-related code (like array of type names in SwigObj, object registry, etc.). This can be used when we are sure we won't handle exceptions on the C side, and this will generate much less code. 3. Modified typemaps for object arrays. Multidimensional ones still needs some fixing. 4. Added 'enums' and 'cast_operator' runtime tests. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-maciekd@10771 626c5289-ae23-0410-ae9c-e8d60b6d4f22
11 lines
128 B
C
11 lines
128 B
C
#include <stdio.h>
|
|
|
|
#include "enums/enums_proxy.h"
|
|
|
|
int main() {
|
|
bar2(1);
|
|
bar3(1);
|
|
bar1(1);
|
|
SWIG_exit(0);
|
|
}
|
|
|