///////////////////////////////////////////////////////////////////////////
| 77 | |
| 78 | //////////////////////////////////////////////////////////////////////////////// |
| 79 | bool Version::operator>(const Version& other) const { |
| 80 | return std::tie(major, minor, patch) > std::tie(other.major, other.minor, other.patch); |
| 81 | } |
| 82 | |
| 83 | //////////////////////////////////////////////////////////////////////////////// |
| 84 | bool Version::operator>=(const Version& other) const { |