| 160 | bailoutInternal("valueFlowBailoutIncompleteVar", (tokenlist), (errorLogger), (tok), (what), "", 0, __func__) |
| 161 | |
| 162 | static void changeKnownToPossible(std::list<ValueFlow::Value>& values, int indirect = -1) |
| 163 | { |
| 164 | for (ValueFlow::Value& v : values) { |
| 165 | if (indirect >= 0 && v.indirect != indirect) |
| 166 | continue; |
| 167 | v.changeKnownToPossible(); |
| 168 | } |
| 169 | } |
| 170 | |
| 171 | static void removeImpossible(std::list<ValueFlow::Value>& values, int indirect = -1) |
| 172 | { |
no outgoing calls
no test coverage detected