aboutsummaryrefslogtreecommitdiff
path: root/src/engine/graphics/window.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/graphics/window.hpp')
-rw-r--r--src/engine/graphics/window.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/graphics/window.hpp b/src/engine/graphics/window.hpp
index c9a9c70..69c04c3 100644
--- a/src/engine/graphics/window.hpp
+++ b/src/engine/graphics/window.hpp
@@ -10,5 +10,5 @@ class Window : public IWindow, public AutoWirable<IWindow, Window>
public:
Window() noexcept = default;
- [[nodiscard]] Bounds size() const noexcept override;
+ [[nodiscard]] auto size() const noexcept -> Bounds override;
};