Fix some usage of global scope operator ::

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11719 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2009-11-03 19:14:37 +00:00
commit da1fc3ab8f
5 changed files with 49 additions and 0 deletions

View file

@ -24,6 +24,12 @@ public:
const B GetBconst() const {
return b;
}
::B GetBGlobalQualifier() {
return b;
}
const ::B GetBconstGlobalGlobalQualifier() const {
return b;
}
};
%}