gcc -Wall warnings fix

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4426 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2003-03-03 23:29:53 +00:00
commit 6116a681bc
8 changed files with 16 additions and 24 deletions

View file

@ -662,7 +662,7 @@ class JAVA : public Language {
// Get any Java exception classes in the throw typemap
ParmList *throw_parm_list = NULL;
if (throw_parm_list = Getattr(n,"throws")) {
if ((throw_parm_list = Getattr(n,"throws"))) {
Swig_typemap_attach_parms("throws", throw_parm_list, f);
for (p = throw_parm_list; p; p=nextSibling(p)) {
if ((tm = Getattr(p,"tmap:throws"))) {