From Boris Bralo, Added std:: in front of getline.

This commit is contained in:
Robert Osfield
2004-03-05 20:07:01 +00:00
parent 89d9ca11c9
commit eb21da4d29

View File

@@ -544,7 +544,7 @@ bool TXPArchive::loadTextStyles()
{
osg::notify(osg::NOTICE) << "txp:: Font map file found: " << fmapfname << std::endl;
std::string line;
while (getline(fmapfile,line))
while (std::getline(fmapfile,line))
{
unsigned int ix = line.find_first_of('=');
if (ix != std::string::npos)