| 1563 | } |
| 1564 | |
| 1565 | int getIndirect(const Token* tok) const override |
| 1566 | { |
| 1567 | if (tok->valueType()) { |
| 1568 | return tok->valueType()->pointer; |
| 1569 | } |
| 1570 | return ValueFlowAnalyzer::getIndirect(tok); |
| 1571 | } |
| 1572 | |
| 1573 | Action isModified(const Token* tok) const override { |
| 1574 | // An iterator won't change the container size |
nothing calls this directly
no test coverage detected