Prefix some calls with std::
These depend on C++ argument dependent name lookup and won't work with an upcoming cleanup.
This commit is contained in:
+1
-1
@@ -660,7 +660,7 @@ XNode *LuaHelpers::GetLuaInformation()
|
||||
{
|
||||
RString sNamespace;
|
||||
LuaHelpers::Pop( L, sNamespace );
|
||||
if( find(BuiltInPackages, end, sNamespace) != end )
|
||||
if( std::find(BuiltInPackages, end, sNamespace) != end )
|
||||
continue;
|
||||
std::vector<RString> &vNamespaceFunctions = mNamespaces[sNamespace];
|
||||
FOREACH_LUATABLE( L, -1 )
|
||||
|
||||
Reference in New Issue
Block a user