fix [ 1432152 ] %rename friend operators in namespace

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8825 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2006-02-16 06:59:06 +00:00
commit e26e9d9b6d
3 changed files with 29 additions and 0 deletions

View file

@ -310,6 +310,7 @@ static void add_symbols(Node *n) {
Delete(base);
Delete(prefix);
}
Namespaceprefix = 0;
} else {
/* for member functions, we need to remove the redundant
class scope if provided, as in

View file

@ -519,6 +519,15 @@ Swig_name_object_get(Hash *namehash, String *prefix, String *name, SwigType *dec
if (!rn) {
rn = name_object_get(namehash, name, decl, ncdecl);
}
if (!rn && Swig_scopename_check(name)) {
String *nprefix = NewStringEmpty();
String *nlast = NewStringEmpty();
Swig_scopename_split(name, &nprefix, &nlast);
rn = name_object_get(namehash, nlast, decl, ncdecl);
Delete(nlast);
Delete(nprefix);
}
Delete(tname);
#ifdef SWIG_DEBUG