testsymboldatabase: Removed useless call of GetSymbolDatabase.

This commit is contained in:
orbitcowboy 2015-12-15 13:11:20 +01:00
parent 66897a95f4
commit d93f2994d4
1 changed files with 0 additions and 1 deletions

View File

@ -3003,7 +3003,6 @@ private:
Tokenizer tokenizer(&settings, this);
std::istringstream istr(code);
tokenizer.tokenize(istr, "test.cpp");
tokenizer.getSymbolDatabase();
const Token *tok = Token::findsimplematch(tokenizer.tokens(),str);
return tok->valueType()->str();
}