Replaced find_first_of with find

This commit is contained in:
Robert Osfield
2010-03-05 15:36:32 +00:00
parent e401fa7461
commit 737378c967

View File

@@ -224,7 +224,7 @@ std::string osgDB::getServerAddress(const std::string& filename)
std::string osgDB::getServerFileName(const std::string& filename)
{
std::string::size_type pos(filename.find_first_of("://"));
std::string::size_type pos(filename.find("://"));
if (pos != std::string::npos)
{