mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 19:19:56 +00:00
ExprParser: Warn about ignored arguments
This commit is contained in:
parent
84a9df9793
commit
f375d07c16
1 changed files with 6 additions and 0 deletions
|
@ -804,6 +804,8 @@ namespace Compiler
|
|||
if (optional)
|
||||
++optionalCount;
|
||||
}
|
||||
else
|
||||
getErrorHandler().warning("Ignoring extra argument", mTokenLoc);
|
||||
}
|
||||
else if (*iter=='X')
|
||||
{
|
||||
|
@ -815,6 +817,8 @@ namespace Compiler
|
|||
|
||||
if (parser.isEmpty())
|
||||
break;
|
||||
else
|
||||
getErrorHandler().warning("Ignoring extra argument", mTokenLoc);
|
||||
}
|
||||
else if (*iter=='z')
|
||||
{
|
||||
|
@ -825,6 +829,8 @@ namespace Compiler
|
|||
|
||||
if (discardParser.isEmpty())
|
||||
break;
|
||||
else
|
||||
getErrorHandler().warning("Ignoring extra argument", mTokenLoc);
|
||||
}
|
||||
else if (*iter=='j')
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue