| 425 | } |
| 426 | |
| 427 | bool isStlStringType(const Token* tok) |
| 428 | { |
| 429 | return Token::Match(tok, "std :: string|wstring|u16string|u32string !!::") || |
| 430 | (Token::simpleMatch(tok, "std :: basic_string <") && !Token::simpleMatch(tok->linkAt(3), "> ::")); |
| 431 | } |
| 432 | |
| 433 | bool isVoidCast(const Token* tok) |
| 434 | { |
no test coverage detected