mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-05 11:20:54 +01:00
GCC fix.
This commit is contained in:
parent
7a822c9429
commit
e58bb1b27f
1 changed files with 1 additions and 1 deletions
|
@ -487,7 +487,7 @@ int main(int argc, char** argv)
|
||||||
if (args.size() < 4)
|
if (args.size() < 4)
|
||||||
help(args);
|
help(args);
|
||||||
|
|
||||||
for (int i = 1; i < args.size(); ++i)
|
for (size_t i = 1; i < args.size(); ++i)
|
||||||
{
|
{
|
||||||
if (args[i] == "--help")
|
if (args[i] == "--help")
|
||||||
help(args);
|
help(args);
|
||||||
|
|
Loading…
Add table
Reference in a new issue