From 25699cd184bd156aad548c6304d197f67c5ac18b Mon Sep 17 00:00:00 2001 From: rturrado <68099809+rturrado@users.noreply.github.com> Date: Mon, 11 Dec 2023 12:20:11 +0100 Subject: [PATCH] Fix warning: unused parameter 'context' [-Wunused-parameter]. --- runtime/Cpp/runtime/src/tree/xpath/XPathLexer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.cpp b/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.cpp index 4d7448a89b9..f9b89c41b06 100644 --- a/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.cpp +++ b/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.cpp @@ -155,7 +155,7 @@ void XPathLexer::action(RuleContext *context, size_t ruleIndex, size_t actionInd } } -void XPathLexer::IDAction(antlr4::RuleContext *context, size_t actionIndex) { +void XPathLexer::IDAction(antlr4::RuleContext */*context*/, size_t actionIndex) { switch (actionIndex) { case 0: if (isupper(getText()[0]))