Added several warning filters into the overload's test cases. Added runtime tests for several codes. You can now make check-lua-test-suite with no errors and only a few warnings. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10076 626c5289-ae23-0410-ae9c-e8d60b6d4f22
28 lines
497 B
OpenEdge ABL
28 lines
497 B
OpenEdge ABL
%module smart_pointer_overload
|
|
|
|
#ifdef SWIGLUA // lua only has one numeric type, so some overloads shadow each other creating warnings
|
|
%warnfilter(SWIGWARN_LANG_OVERLOAD_SHADOW) test;
|
|
#endif
|
|
|
|
#ifndef SWIG_NO_OVERLOAD
|
|
|
|
%inline %{
|
|
struct Foo {
|
|
int x;
|
|
int test(int y) { y = 0; return 1; }
|
|
int test(double y) { y = 0; return 2; }
|
|
int test(char *s) { s = 0; return 3; }
|
|
};
|
|
|
|
class Bar {
|
|
Foo *f;
|
|
public:
|
|
Bar(Foo *f) : f(f) { }
|
|
Foo *operator->() {
|
|
return f;
|
|
}
|
|
};
|
|
%}
|
|
|
|
#endif
|
|
|