| 1172 | } |
| 1173 | |
| 1174 | static Token* simplifyTypedefInsertToken(Token* tok, const std::string& str, const Token* location) { |
| 1175 | tok = tok->insertToken(str); |
| 1176 | tok->linenr(location->linenr()); |
| 1177 | tok->column(location->column()); |
| 1178 | tok->isSimplifiedTypedef(true); |
| 1179 | return tok; |
| 1180 | } |
| 1181 | |
| 1182 | // TODO: rename - it is not C++ specific |
| 1183 | void Tokenizer::simplifyTypedefCpp() |
no test coverage detected