| 1583 | } |
| 1584 | |
| 1585 | CheckIOImpl::ArgumentInfo::~ArgumentInfo() |
| 1586 | { |
| 1587 | if (tempToken) { |
| 1588 | while (tempToken->next()) |
| 1589 | tempToken->deleteNext(); |
| 1590 | |
| 1591 | delete tempToken; |
| 1592 | } |
| 1593 | } |
| 1594 | |
| 1595 | namespace { |
| 1596 | const std::set<std::string> stl_vector = { "array", "vector" }; |
nothing calls this directly
no test coverage detected