patrick
/
plasp
Archived
1
0
Fork 0

Minor formatting.

This commit is contained in:
Patrick Lühne 2016-06-09 18:03:32 +02:00
parent 9506dcb31e
commit c7405e054f
1 changed files with 2 additions and 2 deletions

View File

@ -62,12 +62,12 @@ std::unique_ptr<InitialState> InitialState::parseDeclaration(Context &context, c
const auto expressionIdentifier = parser.parseIdentifier(isIdentifier);
parser.seek(position);
throw utils::ParserException(context.parser, "Expression type \"" + expressionIdentifier + "\" unknown or not allowed in this context");
throw utils::ParserException(parser, "Expression type \"" + expressionIdentifier + "\" unknown or not allowed in this context");
};
parser.skipWhiteSpace();
while (context.parser.currentCharacter() != ')')
while (parser.currentCharacter() != ')')
{
ExpressionPointer expression;