compiler warning fix

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4555 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2003-03-17 10:15:44 +00:00
commit 66a2cc62f0
4 changed files with 0 additions and 4 deletions

View file

@ -1375,7 +1375,6 @@ int Language::unrollVirtualMethods(Node *n,
int top = (n == parent);
has_virtual = 0;
Node *ni;
String *type;
String *nodeType;
String *storage;
String *classname;

View file

@ -161,7 +161,6 @@ public:
} else if (SwigType_isfunction(element)) {
Parm *parm;
String *p;
int j, plen;
Append(result,"(");
parm = args;
while (parm != 0) {

View file

@ -210,7 +210,6 @@ String *method_decl(SwigType *s, const String_or_char *id, List *args, int strip
} else if (SwigType_isfunction(element)) {
Parm *parm;
String *p;
int j, plen;
Append(result,"(");
parm = args;
while (parm != 0) {

View file

@ -695,7 +695,6 @@ Swig_DestructorToFunction(Node *n, String *classname, int cplus, int flags)
{
SwigType *type;
Parm *p;
Node *classNode;
type = NewString(classname);
SwigType_add_pointer(type);