fix for operator() + template + gcc 3.3.5
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8133 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
9a3b67acda
commit
e7e61fa999
1 changed files with 6 additions and 0 deletions
|
|
@ -417,6 +417,12 @@ Swig_cmethod_call(String_or_char *name, ParmList *parms, String_or_char *self) {
|
|||
the rest seems not caring very much,
|
||||
*/
|
||||
if (SwigType_istemplate(name)) {
|
||||
/* fix for compilers like gcc 3.3.5 + operator() */
|
||||
if (strstr(Char(nname),"operator ()") != 0) {
|
||||
String *tprefix = SwigType_templateprefix(nname);
|
||||
Delete(nname);
|
||||
nname = tprefix;
|
||||
}
|
||||
Printf(func,"SWIGTEMPLATEDISAMBIGUATOR %s(", nname);
|
||||
} else {
|
||||
Printf(func,"%s(", nname);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue