We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfe83cf commit 2415a8dCopy full SHA for 2415a8d
1 file changed
src/osgPlugins/dae/daeReader.cpp
@@ -292,6 +292,8 @@ bool daeReader::convert( std::istream& fin )
292
// set fileURI to null device
293
const std::string fileURI("from std::istream");
294
295
+ fin.imbue(std::locale::classic());
296
+
297
// get the size of the file and rewind
298
fin.seekg(0, std::ios::end);
299
unsigned long length = static_cast<unsigned long>(fin.tellg());
0 commit comments