Added missing std::
This commit is contained in:
@@ -73,7 +73,7 @@ int main( int argc, char **argv )
|
||||
|
||||
osg::Timer_t end_tick = timer.tick();
|
||||
|
||||
cout << "Time to load = "<<timer.delta_s(start_tick,end_tick);
|
||||
std::cout << "Time to load = "<<timer.delta_s(start_tick,end_tick)<<std::endl;
|
||||
|
||||
// optimize the scene graph, remove rendundent nodes and state etc.
|
||||
osgUtil::Optimizer optimizer;
|
||||
|
||||
@@ -13,4 +13,4 @@
|
||||
// NOTE: Update anytime the binary format changes
|
||||
#define VERSION 0x01
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@@ -17,4 +17,4 @@ private:
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@@ -15,4 +15,4 @@ public:
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@@ -43,7 +43,7 @@ class IVEReaderWriter : public ReaderWriter
|
||||
return rootNode;
|
||||
}
|
||||
else{
|
||||
cout <<"Unknown class identification in file "<< id << endl;
|
||||
std::cout <<"Unknown class identification in file "<< id << std::endl;
|
||||
}
|
||||
}
|
||||
catch(ive::Exception e)
|
||||
@@ -58,7 +58,7 @@ class IVEReaderWriter : public ReaderWriter
|
||||
{
|
||||
try
|
||||
{
|
||||
std::ofstream ostream(fileName.c_str(), ios::out | ios::binary);
|
||||
std::ofstream ostream(fileName.c_str(), std::ios::out | std::ios::binary);
|
||||
ive::DataOutputStream* out = new ive::DataOutputStream(&ostream);
|
||||
// write ive file.
|
||||
if(dynamic_cast<const osg::MatrixTransform*>(&node))
|
||||
|
||||
Reference in New Issue
Block a user