Moved a misplaced parenthesis
This commit is contained in:
parent
e275caa5fb
commit
d6a559959c
1 changed files with 1 additions and 1 deletions
|
|
@ -476,7 +476,7 @@ void expr_t::token_t::unexpected(const char wanted)
|
|||
switch (prev_kind) {
|
||||
case TOK_EOF:
|
||||
throw_(parse_error,
|
||||
_("Unexpected end of expression (wanted '%1')" << wanted));
|
||||
_("Unexpected end of expression (wanted '%1')") << wanted);
|
||||
case IDENT:
|
||||
throw_(parse_error,
|
||||
_("Unexpected symbol '%1' (wanted '%2')") << value << wanted);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue