Skip to content

Commit

Permalink
helpers.h: fixed duplInheritedMember selfcheck warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
firewave committed Apr 10, 2024
1 parent 78052ba commit d68431b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions test/helpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,15 @@ class SimpleTokenizer : public Tokenizer {
: Tokenizer{settings, &errorlogger, preprocessor}
{}

Token* tokens() {
/*
Token* tokens() {
return Tokenizer::tokens();
}
}
const Token* tokens() const {
const Token* tokens() const {
return Tokenizer::tokens();
}
}
*/

/**
* Tokenize code
Expand Down

0 comments on commit d68431b

Please sign in to comment.