Fix Cppcheck warning; make ImportProject::FileSettings::parseCommandDefine() static

This commit is contained in:
Daniel Marjamäki 2020-12-04 20:46:44 +01:00
parent 40963100c4
commit 600637a391
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ public:
void parseCommand(const std::string &command);
void parseCommandStd(const std::string& command, std::string::size_type *pos, std::string& defs);
void parseCommandDefine(const std::string& command, std::string::size_type *pos, std::string& defs);
static void parseCommandDefine(const std::string& command, std::string::size_type *pos, std::string& defs);
void parseCommandUndefine(const std::string& command, std::string::size_type *pos);
void parseCommandInclude(const std::string& command, std::string::size_type *pos);
void parseCommandSystemInclude(const std::string& command, std::string::size_type *pos);