Refactorization: Removed unused function declaration from Tokenizer and fixed prototype of SymbolDatabase::cppcheckError
This commit is contained in:
parent
37fefe3479
commit
8f493612e6
|
@ -1045,7 +1045,7 @@ private:
|
||||||
* Send error message to error logger about internal bug.
|
* Send error message to error logger about internal bug.
|
||||||
* @param tok the token that this bug concerns.
|
* @param tok the token that this bug concerns.
|
||||||
*/
|
*/
|
||||||
void cppcheckError(const Token *tok);
|
void cppcheckError(const Token *tok) const;
|
||||||
|
|
||||||
/** Whether iName is a keyword as defined in http://en.cppreference.com/w/c/keyword and http://en.cppreference.com/w/cpp/keyword*/
|
/** Whether iName is a keyword as defined in http://en.cppreference.com/w/c/keyword and http://en.cppreference.com/w/cpp/keyword*/
|
||||||
bool isReservedName(const std::string& iName) const;
|
bool isReservedName(const std::string& iName) const;
|
||||||
|
|
|
@ -571,12 +571,6 @@ private:
|
||||||
/** Simplify function pointers */
|
/** Simplify function pointers */
|
||||||
void simplifyFunctionPointers();
|
void simplifyFunctionPointers();
|
||||||
|
|
||||||
/**
|
|
||||||
* Remove exception specifications.
|
|
||||||
*/
|
|
||||||
void removeExceptionSpecifications();
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Send error message to error logger about internal bug.
|
* Send error message to error logger about internal bug.
|
||||||
* @param tok the token that this bug concerns.
|
* @param tok the token that this bug concerns.
|
||||||
|
|
Loading…
Reference in New Issue