fix: remove redundant const

This commit is contained in:
Eatswap 2022-12-12 23:18:39 +08:00
parent 4bb8773d5d
commit 57033c3452
Signed by: Eatswap
GPG Key ID: BE661106A1F3FA0B
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ public:
using FlexLexer::yylex; using FlexLexer::yylex;
virtual int yylex( virtual int yylex(
DragonLisp::DLParser::semantic_type* const lval, DragonLisp::DLParser::semantic_type* lval,
DragonLisp::DLParser::location_type* location, DragonLisp::DLParser::location_type* location,
DragonLisp::DLDriver& drv DragonLisp::DLDriver& drv
); );