///////////////////////////////////////////////////////////////////////////
| 87 | |
| 88 | //////////////////////////////////////////////////////////////////////////////// |
| 89 | bool Version::operator==(const Version& other) const { |
| 90 | return std::tie(major, minor, patch) == std::tie(other.major, other.minor, other.patch); |
| 91 | } |
| 92 | |
| 93 | //////////////////////////////////////////////////////////////////////////////// |
| 94 | bool Version::operator!=(const Version& other) const { |
nothing calls this directly
no outgoing calls
no test coverage detected