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:
Arthur Eubanks
2025-04-20 18:16:53 -07:00
committed by teejusb
parent 9dc5cea91d
commit 9131dc6b68
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -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 )