Eliminate unused parameters on calls to Printf()
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9912 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
8f4f895651
commit
9b851f3f55
1 changed files with 5 additions and 5 deletions
|
|
@ -1880,7 +1880,7 @@ public:
|
|||
Replaceall(tm, "$target", name);
|
||||
Printf(s_vinit, "%s\n", tm);
|
||||
} else {
|
||||
Printf(stderr, "%s: Line %d, Unable to link with type %s\n", input_file, line_number, SwigType_str(t, 0), name);
|
||||
Printf(stderr, "%s: Line %d, Unable to link with type %s\n", input_file, line_number, SwigType_str(t, 0));
|
||||
}
|
||||
|
||||
/* Now generate PHP -> C sync blocks */
|
||||
|
|
@ -1890,8 +1890,8 @@ public:
|
|||
Replaceall(tm, "$symname", iname);
|
||||
Printf(f_c->code, "%s\n", tm);
|
||||
} else {
|
||||
Printf(stderr,"%s: Line %d, Unable to link with type %s\n",
|
||||
input_file, line_number, SwigType_str(t, 0), name);
|
||||
Printf(stderr,"%s: Line %d, Unable to link with type %s\n",
|
||||
input_file, line_number, SwigType_str(t, 0));
|
||||
}
|
||||
*/
|
||||
/* Now generate C -> PHP sync blocks */
|
||||
|
|
@ -1903,8 +1903,8 @@ public:
|
|||
Replaceall(tm, "$symname", iname);
|
||||
Printf(f_php->code, "%s\n", tm);
|
||||
} else {
|
||||
Printf(stderr,"%s: Line %d, Unable to link with type %s\n",
|
||||
input_file, line_number, SwigType_str(t, 0), name);
|
||||
Printf(stderr,"%s: Line %d, Unable to link with type %s\n",
|
||||
input_file, line_number, SwigType_str(t, 0));
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue