///////////////////////////////////////////////////////////////////////////
| 92 | |
| 93 | //////////////////////////////////////////////////////////////////////////////// |
| 94 | bool Version::operator!=(const Version& other) const { |
| 95 | return std::tie(major, minor, patch) != std::tie(other.major, other.minor, other.patch); |
| 96 | } |
| 97 | |
| 98 | //////////////////////////////////////////////////////////////////////////////// |
| 99 | Version::operator std::string() const { |
nothing calls this directly
no outgoing calls
no test coverage detected