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();
scanner.scan (stringParser);
if (optional && stringParser.isEmpty())
if ((optional || *iter=='x') && stringParser.isEmpty())
break;
if (*iter!='x')