| 191 | }; |
| 192 | |
| 193 | InputMessageClosure::~InputMessageClosure() noexcept(false) { |
| 194 | if (_msg) { |
| 195 | ProcessInputMessage(_msg); |
| 196 | } |
| 197 | } |
| 198 | |
| 199 | void InputMessageClosure::reset(InputMessageBase* m) { |
| 200 | if (_msg) { |
nothing calls this directly
no test coverage detected