Skip to content

Commit

Permalink
Fix warning: unused parameter 'context' [-Wunused-parameter].
Browse files Browse the repository at this point in the history
Signed-off-by: Roberto Turrado Camblor <rturrado@gmail.com>
  • Loading branch information
rturrado committed Dec 11, 2023
1 parent d25d421 commit 74528a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/Cpp/runtime/src/tree/xpath/XPathLexer.cpp
Expand Up @@ -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]))
Expand Down

0 comments on commit 74528a8

Please sign in to comment.