///////////////////////////////////////////////////////////////////////////
| 67 | |
| 68 | //////////////////////////////////////////////////////////////////////////////// |
| 69 | bool Version::operator<(const Version& other) const { |
| 70 | return std::tie(major, minor, patch) < std::tie(other.major, other.minor, other.patch); |
| 71 | } |
| 72 | |
| 73 | //////////////////////////////////////////////////////////////////////////////// |
| 74 | bool Version::operator<=(const Version& other) const { |
nothing calls this directly
no outgoing calls
no test coverage detected