| 26 | int key; |
| 27 | int modifiers; |
| 28 | KeyModifiers(int key_, int modifiers_) : key(key_), modifiers(modifiers_) { |
| 29 | } |
| 30 | bool operator<(const KeyModifiers &other) const { |
| 31 | if (key == other.key) |
| 32 | return modifiers < other.modifiers; |
nothing calls this directly
no outgoing calls
no test coverage detected