///////////////////////////////////////////////////////////////////////////
| 82 | |
| 83 | //////////////////////////////////////////////////////////////////////////////// |
| 84 | bool Version::operator>=(const Version& other) const { |
| 85 | return std::tie(major, minor, patch) >= std::tie(other.major, other.minor, other.patch); |
| 86 | } |
| 87 | |
| 88 | //////////////////////////////////////////////////////////////////////////////// |
| 89 | bool Version::operator==(const Version& other) const { |
nothing calls this directly
no outgoing calls
no test coverage detected