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:
parent
93d3c4b6d2
commit
b1c76adc32
1 changed files with 1 additions and 3 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue