diff options
author | HampusM <hampus@hampusmat.com> | 2022-03-14 18:02:18 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-13 17:56:56 +0200 |
commit | dc6222611ad14a33f642396558ba84ecba9d6605 (patch) | |
tree | d759020233b66be62c5539209a03842d283b67a9 /src/input_actions.hpp | |
parent | dbab54ebf134b6ab2cf719d7c26a191fbffeed34 (diff) |
perf: add noexcept almost everywhere
Diffstat (limited to 'src/input_actions.hpp')
-rw-r--r-- | src/input_actions.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input_actions.hpp b/src/input_actions.hpp index 224c280..b9c33c1 100644 --- a/src/input_actions.hpp +++ b/src/input_actions.hpp @@ -12,11 +12,11 @@ namespace InputActions { +void exit_success() noexcept; + Callback move_cursor(const Vector2 &direction, const std::shared_ptr<ICursorController> &cursor_controller, const std::shared_ptr<IScene> &scene, - const std::shared_ptr<IWindow> &window); - -void exit_success(); + const std::shared_ptr<IWindow> &window) noexcept; } // namespace InputActions |