Fix operator= warning from our own code.

This commit is contained in:
Reijo Tomperi 2010-02-12 22:38:17 +02:00
parent b52fa9451f
commit 17b8d025a3
1 changed files with 1 additions and 1 deletions

View File

@ -415,7 +415,7 @@ private:
static std::string getNameForFunctionParams(const Token *start); static std::string getNameForFunctionParams(const Token *start);
/** Disable assignment operator */ /** Disable assignment operator */
void operator=(const Tokenizer &); Tokenizer &operator=(const Tokenizer &);
Token *_tokens, *_tokensBack; Token *_tokens, *_tokensBack;
std::map<std::string, unsigned int> _typeSize; std::map<std::string, unsigned int> _typeSize;