From a039c8ad36779903571419cb06cd052f8fc41512 Mon Sep 17 00:00:00 2001 From: HampusM Date: Tue, 29 Mar 2022 17:40:04 +0200 Subject: refactor: use trailing return types --- src/game/game.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/game/game.hpp') diff --git a/src/game/game.hpp b/src/game/game.hpp index 5894a01..dfbe619 100644 --- a/src/game/game.hpp +++ b/src/game/game.hpp @@ -25,8 +25,8 @@ public: void on_exit() const noexcept override; - [[nodiscard]] std::unordered_map> - get_input_config() const noexcept override; + [[nodiscard]] auto get_input_config() const noexcept + -> std::unordered_map> override; private: std::shared_ptr _window; -- cgit v1.2.3-18-g5258