mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
++ptr (sorry, I don't know C++ lol)
This commit is contained in:
parent
d6ef1dc15f
commit
5c8971b895
1 changed files with 1 additions and 1 deletions
|
@ -3710,7 +3710,7 @@ void compileOrThrow(BytecodeBuilder& bytecode, AstStatBlock* root, const AstName
|
|||
}
|
||||
|
||||
if (options.mutableGlobalNames)
|
||||
for (const char** ptr = options.mutableGlobalNames; *ptr != NULL; ptr += sizeof(const char*))
|
||||
for (const char** ptr = options.mutableGlobalNames; *ptr != NULL; ++ptr)
|
||||
{
|
||||
AstName name = names.get(*ptr);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue