| 5 | |
| 6 | struct KeyCode { |
| 7 | KeyCode() : mCode(~0) {} |
| 8 | KeyCode(unsigned code) : mCode(code) {} |
| 9 | KeyCode(unsigned row, unsigned col) : mCode(((row & 7) << 3) | |
| 10 | ((col & 7) << 0)) {} |
nothing calls this directly
no outgoing calls
no test coverage detected