| 59 | return *this < other || *this == other; |
| 60 | } |
| 61 | bool operator>(const BytecodeVersion &other) const { return other < *this; } |
| 62 | bool operator>=(const BytecodeVersion &other) const { |
| 63 | return !(*this < other); |
| 64 | } |
nothing calls this directly
no outgoing calls
no test coverage detected