| 260 | } |
| 261 | |
| 262 | bool Solver::operator==(const Solver& s) const { |
| 263 | if (configFile.isEmpty() && s.configFile.isEmpty()) { |
| 264 | return id == s.id && version == s.version; |
| 265 | } |
| 266 | return configFile == s.configFile; |
| 267 | } |
| 268 | |
| 269 | bool Solver::hasAllRequiredFlags() |
| 270 | { |
nothing calls this directly
no outgoing calls
no test coverage detected