///////////////////////////////////////////////////////////////////////////
| 72 | |
| 73 | //////////////////////////////////////////////////////////////////////////////// |
| 74 | bool Version::operator<=(const Version& other) const { |
| 75 | return std::tie(major, minor, patch) <= std::tie(other.major, other.minor, other.patch); |
| 76 | } |
| 77 | |
| 78 | //////////////////////////////////////////////////////////////////////////////// |
| 79 | bool Version::operator>(const Version& other) const { |
nothing calls this directly
no outgoing calls
no test coverage detected