| 49 | return !(*this == other); |
| 50 | } |
| 51 | bool operator<(const BytecodeVersion &other) const { |
| 52 | if (verMajor != other.verMajor) |
| 53 | return verMajor < other.verMajor; |
| 54 | if (verMinor != other.verMinor) |
| 55 | return verMinor < other.verMinor; |
| 56 | return verTag < other.verTag; |
| 57 | } |
| 58 | bool operator<=(const BytecodeVersion &other) const { |
| 59 | return *this < other || *this == other; |
| 60 | } |
nothing calls this directly
no outgoing calls
no test coverage detected