Fixes for Win32 build related to changes in using namespace std.

This commit is contained in:
Robert Osfield
2001-12-14 10:47:20 +00:00
parent a4e4d4fa7c
commit 84605a5f4e
4 changed files with 8 additions and 3 deletions

View File

@@ -392,7 +392,7 @@ bool StateSet_writeLocalData(const Object& obj, Output& fw)
else
{
// no name defined for GLMode so just pass its value to fw.
fw.indent() << "0x" << hex << (osg::uint)mitr->first << dec <<" " << StateSet_getModeStr(mitr->second) << endl;
fw.indent() << "0x" << std::hex << (osg::uint)mitr->first << std::dec <<" " << StateSet_getModeStr(mitr->second) << endl;
}
}