mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Explicit numerical comparison
This commit is contained in:
parent
2bb42da32f
commit
dda57dad6c
1 changed files with 1 additions and 1 deletions
|
@ -314,7 +314,7 @@ static int tconcat(lua_State* L)
|
|||
for (; i < last; i++)
|
||||
{
|
||||
addfield(L, &b, i, t);
|
||||
if (!DFFlag::LuauFasterConcat || lsep)
|
||||
if (!DFFlag::LuauFasterConcat || lsep != 0)
|
||||
luaL_addlstring(&b, sep, lsep);
|
||||
}
|
||||
if (i == last) // add last value (if interval was not empty)
|
||||
|
|
Loading…
Add table
Reference in a new issue