Changed push back to a += to try and fix compile on hopeless OSX g++ version.

This commit is contained in:
Robert Osfield
2003-04-14 08:16:55 +00:00
parent 02390585c6
commit a202cfa4f3

View File

@@ -315,7 +315,7 @@ bool Text_writeLocalData(const osg::Object &obj, osgDB::Output &fw)
itr!=textstring.end();
++itr)
{
str.push_back((char)*itr);
str += (char)(*itr);
}
//std::copy(textstring.begin(),textstring.end(),std::back_inserter(str));