| 10341 | } |
| 10342 | |
| 10343 | static bool isStdContainerOrIterator(const Token* tok, const Library& library) |
| 10344 | { |
| 10345 | const Library::Container* ctr = library.detectContainerOrIterator(tok, nullptr, /*withoutStd*/ true); |
| 10346 | return ctr && startsWith(ctr->startPattern, "std ::"); |
| 10347 | } |
| 10348 | |
| 10349 | static bool isStdSmartPointer(const Token* tok, const Library& library) |
| 10350 | { |
no test coverage detected