Fixed problem with static class variables.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@954 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2000-12-03 03:30:19 +00:00
commit 88699e8c8a

View file

@ -365,7 +365,7 @@ void Language::cpp_staticvariable(DOH *node) {
}
/* Form correct C++ name */
sprintf(mname,"%s::%s",ClassName,name);
sprintf(mname,"%s::%s",Char(ClassName),name);
/* Link with this variable */