aboutsummaryrefslogtreecommitdiffstats
path: root/Parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'Parser.h')
-rw-r--r--Parser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Parser.h b/Parser.h
index 174ed712..2a861321 100644
--- a/Parser.h
+++ b/Parser.h
@@ -63,7 +63,7 @@ private:
ptr<Expression> parseUnaryExpression();
ptr<Expression> parseLeftHandSideExpression();
ptr<Expression> parsePrimaryExpression();
- vecptr<Expression> parseFunctionCallArguments();
+ std::vector<ptr<Expression>> parseFunctionCallArguments();
/// @}
/// Helper functions
@@ -73,7 +73,7 @@ private:
Token::Value expectAssignmentOperator();
ptr<ASTString> expectIdentifierToken();
ptr<ASTString> getLiteralAndAdvance();
- void throwExpectationError(const std::string& _description);
+ void throwExpectationError(std::string const& _description);
/// @}
std::shared_ptr<Scanner> m_scanner;