Remove an unused temporary buffer

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@9298 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Olly Betts 2006-09-19 18:22:11 +00:00
commit b1c76adc32

View file

@ -988,14 +988,12 @@ static Node *dump_nested(const char *parent) {
return 0;
}
while (n) {
char temp[256];
Node *retx;
SwigType *nt;
/* Token replace the name of the parent class */
Replace(n->code, "$classname", parent, DOH_REPLACE_ANY);
/* Fix up the name of the datatype (for building typedefs and other stuff) */
sprintf(temp,"%s_%s", parent,n->name);
/* Fix up the name of the datatype (for building typedefs and other stuff) */
Append(n->type,parent);
Append(n->type,"_");
Append(n->type,n->name);