| 179 | } |
| 180 | |
| 181 | bool DataPositions::empty() const |
| 182 | { |
| 183 | for (auto& x : files) |
| 184 | for (auto& y : x) |
| 185 | if (y) |
| 186 | return false; |
| 187 | |
| 188 | for (auto& x : inputs) |
| 189 | for (auto& y : x) |
| 190 | if (y) |
| 191 | return false; |
| 192 | |
| 193 | for (auto& x : extended) |
| 194 | if (not x.empty()) |
| 195 | return false; |
| 196 | |
| 197 | if (not edabits.empty()) |
| 198 | return false; |
| 199 | |
| 200 | return true; |
| 201 | } |
| 202 | |
| 203 | bool DataPositions::any_more(const DataPositions& other) const |
| 204 | { |
no outgoing calls
no test coverage detected