diff options
Diffstat (limited to 'Userland/Services/WindowServer/Cursor.h')
-rw-r--r-- | Userland/Services/WindowServer/Cursor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/WindowServer/Cursor.h b/Userland/Services/WindowServer/Cursor.h index 5a414029d6..8991432dce 100644 --- a/Userland/Services/WindowServer/Cursor.h +++ b/Userland/Services/WindowServer/Cursor.h @@ -46,7 +46,7 @@ public: Gfx::IntSize size() const { return m_rect.size(); } private: - Cursor() { } + Cursor() = default; Cursor(NonnullRefPtr<Gfx::Bitmap>&&, int, const Gfx::CursorParams&); bool load(StringView, StringView); |