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/interfaces/game.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/interfaces/game.hpp') diff --git a/src/interfaces/game.hpp b/src/interfaces/game.hpp index 3e547f5..46d79e4 100644 --- a/src/interfaces/game.hpp +++ b/src/interfaces/game.hpp @@ -20,8 +20,8 @@ public: virtual void on_exit() const noexcept = 0; - [[nodiscard]] virtual std::unordered_map> - get_input_config() const noexcept = 0; + [[nodiscard]] virtual auto get_input_config() const noexcept + -> std::unordered_map> = 0; }; using IGameFactory = std::shared_ptr (*)( -- cgit v1.2.3-18-g5258