fixed a constness-issue

This commit is contained in:
Marc Zinnschlag 2014-02-14 12:23:00 +01:00
parent 910d62e4b8
commit d213c6c36a
18 changed files with 39 additions and 39 deletions

View file

@ -10,7 +10,7 @@
namespace Compiler
{
StringParser::StringParser (ErrorHandler& errorHandler, Context& context, Literals& literals)
StringParser::StringParser (ErrorHandler& errorHandler, const Context& context, Literals& literals)
: Parser (errorHandler, context), mLiterals (literals), mState (StartState), mSmashCase (false)
{