diff options
Diffstat (limited to 'src/interfaces/window.hpp')
-rw-r--r-- | src/interfaces/window.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; }; |