| 46 | verTag == other.verTag; |
| 47 | } |
| 48 | bool operator!=(const BytecodeVersion &other) const { |
| 49 | return !(*this == other); |
| 50 | } |
| 51 | bool operator<(const BytecodeVersion &other) const { |
| 52 | if (verMajor != other.verMajor) |
| 53 | return verMajor < other.verMajor; |
nothing calls this directly
no outgoing calls
no test coverage detected