Removed redundent std::

This commit is contained in:
Robert Osfield
2002-12-11 22:39:59 +00:00
parent 9923a70a2e
commit 75676f026c

View File

@@ -161,7 +161,7 @@ int main( int argc, char **argv )
std::string executablePath = osgDB::getFilePath(argv[0]);
if (!executablePath.empty())
{
std::osg::notify(osg::NOTICE) << "Adding executable path '"<<executablePath<<"' to OpenSceneGraph data and library file paths."<<std::endl;
osg::notify(osg::NOTICE) << "Adding executable path '"<<executablePath<<"' to OpenSceneGraph data and library file paths."<<std::endl;
osgDB::getDataFilePathList().push_front(executablePath);
osgDB::getLibraryFilePathList().push_front(executablePath);
}