diff options
Diffstat (limited to 'src/gui/sdlinput.h')
-rw-r--r-- | src/gui/sdlinput.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/sdlinput.h b/src/gui/sdlinput.h index fd083ba33..3d865389e 100644 --- a/src/gui/sdlinput.h +++ b/src/gui/sdlinput.h @@ -109,10 +109,10 @@ class SDLInput final KeyInput dequeueKeyInput() A_WARN_UNUSED; - bool isKeyQueueEmpty() const A_WARN_UNUSED + bool isKeyQueueEmpty() const noexcept2 A_WARN_UNUSED { return mKeyInputQueue.empty(); } - bool isMouseQueueEmpty() const A_WARN_UNUSED + bool isMouseQueueEmpty() const noexcept2 A_WARN_UNUSED { return mMouseInputQueue.empty(); } MouseInput dequeueMouseInput() A_WARN_UNUSED; |