Minor version changes must not change the observed behavior from existing implementations, but may be provided informationally.
| 59 | // Minor version changes must not change the observed behavior from |
| 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 { |
no outgoing calls