Refactorization: Removed unused function declaration from Tokenizer and fixed prototype of SymbolDatabase::cppcheckError

This commit is contained in:
PKEuS 2016-01-03 10:35:23 +01:00
parent 37fefe3479
commit 8f493612e6
2 changed files with 1 additions and 7 deletions

View File

@ -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;

View File

@ -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.