From 57033c345241d5bf44a4a28b0c5a83d236b4e8a0 Mon Sep 17 00:00:00 2001 From: Eatswap Date: Mon, 12 Dec 2022 23:18:39 +0800 Subject: [PATCH] fix: remove redundant const --- DragonLispScanner.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DragonLispScanner.h b/DragonLispScanner.h index 785be87..a1f6777 100644 --- a/DragonLispScanner.h +++ b/DragonLispScanner.h @@ -24,7 +24,7 @@ public: using FlexLexer::yylex; virtual int yylex( - DragonLisp::DLParser::semantic_type* const lval, + DragonLisp::DLParser::semantic_type* lval, DragonLisp::DLParser::location_type* location, DragonLisp::DLDriver& drv );