remove more warnings, ICC

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6254 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2004-09-17 21:46:44 +00:00
commit 22407f3517
9 changed files with 18 additions and 18 deletions

View file

@ -17,14 +17,14 @@
class Test {
public:
Test() { };
~Test() { };
Test() { }
~Test() { }
char *method() {
return (char *) "Test::method";
}
};
typedef Test *TestPtr;
void weird(Bad x, ::Bad y) { };
void weird(Bad x, ::Bad y) { }
}
char *do_method(example::TestPtr t) {