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/window.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/interfaces/window.hpp') diff --git a/src/interfaces/window.hpp b/src/interfaces/window.hpp index d880762..6fc56e9 100644 --- a/src/interfaces/window.hpp +++ b/src/interfaces/window.hpp @@ -8,5 +8,5 @@ class IWindow public: virtual ~IWindow() noexcept = default; - [[nodiscard]] virtual Bounds size() const noexcept = 0; + [[nodiscard]] virtual auto size() const noexcept -> Bounds = 0; }; -- cgit v1.2.3-18-g5258