| 60 | // existing implementations, but may be provided informationally. |
| 61 | int64_t minor() const { return minor_; } |
| 62 | void set_minor(int64_t val) { minor_ = val; } |
| 63 | |
| 64 | bool operator==(const Version& other) const { |
| 65 | return major_ == other.major_ && minor_ == other.minor_; |
no outgoing calls