ExpressionParser: Add optional 2nd argument to toggle function which clears state.

This commit is contained in:
Jordan Woyak
2019-01-26 13:18:20 -06:00
parent fd07ae8cec
commit 6a2096c419
2 changed files with 13 additions and 1 deletions

View File

@ -30,6 +30,7 @@ protected:
Expression& GetArg(u32 number);
const Expression& GetArg(u32 number) const;
u32 GetArgCount() const;
private:
std::vector<std::unique_ptr<Expression>> m_args;