1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 18:19:55 +00:00

Don't report warning about extra arguments, if there are no extra arguments (Fixes #3133)

This commit is contained in:
Marc Zinnschlag 2016-01-07 15:38:23 +01:00
parent 466f91db67
commit 210c77968a

View file

@ -791,7 +791,7 @@ namespace Compiler
if (*iter=='c') stringParser.smashCase(); if (*iter=='c') stringParser.smashCase();
scanner.scan (stringParser); scanner.scan (stringParser);
if (optional && stringParser.isEmpty()) if ((optional || *iter=='x') && stringParser.isEmpty())
break; break;
if (*iter!='x') if (*iter!='x')