Skip to content

Commit

Permalink
symboldatabase.h: fixed `readability-convert-member-functions-to-stat…
Browse files Browse the repository at this point in the history
…ic` clang-tidy and `functionStatic` selfcheck warning
  • Loading branch information
firewave committed Mar 5, 2024
1 parent e56f174 commit c72a06b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/symboldatabase.h
Original file line number Diff line number Diff line change
Expand Up @@ -1457,7 +1457,7 @@ class CPPCHECKLIB SymbolDatabase {
void fixVarId(VarIdMap & varIds, const Token * vartok, Token * membertok, const Variable * membervar);

/** Whether the token is a keyword as defined in http://en.cppreference.com/w/c/keyword and http://en.cppreference.com/w/cpp/keyword*/
bool isReservedName(const Token* tok) const;
static bool isReservedName(const Token* tok);

const Enumerator * findEnumerator(const Token * tok, std::set<std::string>& tokensThatAreNotEnumeratorValues) const;

Expand Down

0 comments on commit c72a06b

Please sign in to comment.