Various comparison operators for comparing versions.
| 42 | |
| 43 | /// Various comparison operators for comparing versions. |
| 44 | bool operator==(const BytecodeVersion &other) const { |
| 45 | return verMajor == other.verMajor && verMinor == other.verMinor && |
| 46 | verTag == other.verTag; |
| 47 | } |
| 48 | bool operator!=(const BytecodeVersion &other) const { |
| 49 | return !(*this == other); |
| 50 | } |
nothing calls this directly
no outgoing calls
no test coverage detected