remove more warnings, ICC

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

View file

@ -53,7 +53,7 @@
friend int foo(A*, B*);
};
inline int foo(A*, B*) { return 0; };
inline int foo(A*, B*) { return 0; }
%}
@ -65,7 +65,7 @@
// since they are not C/C++/CPP standard.
//
%extend Hello {
int hi(int) { return 0; };
int hi(int) { return 0; }
}
%rename(chao) hi(int);
@ -100,7 +100,7 @@
typedef int Int;
typedef double Int;
friend short hello(int);
int hi(int) { return 0; };
int hi(int) { return 0; }
};
%}