| 10347 | } |
| 10348 | |
| 10349 | static bool isStdSmartPointer(const Token* tok, const Library& library) |
| 10350 | { |
| 10351 | const Library::SmartPointer* ptr = library.detectSmartPointer(tok, /*withoutStd*/ true); |
| 10352 | return ptr && startsWith(ptr->name, "std::"); |
| 10353 | } |
| 10354 | |
| 10355 | static bool isLibraryType(const Token* tok, const Library& library) |
| 10356 | { |
no test coverage detected