| 10353 | } |
| 10354 | |
| 10355 | static bool isLibraryType(const Token* tok, const Library& library) |
| 10356 | { |
| 10357 | return library.hasAnyTypeCheck("std::" + tok->str()) || |
| 10358 | library.podtype("std::" + tok->str()) || |
| 10359 | isStdContainerOrIterator(tok, library); |
| 10360 | } |
| 10361 | |
| 10362 | // Add std:: in front of std classes, when using namespace std; was given |
| 10363 | void Tokenizer::simplifyNamespaceStd() |
no test coverage detected