diff options
Diffstat (limited to 'src/interfaces/cursor.hpp')
-rw-r--r-- | src/interfaces/cursor.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/cursor.hpp b/src/interfaces/cursor.hpp index caa89df..f6521cb 100644 --- a/src/interfaces/cursor.hpp +++ b/src/interfaces/cursor.hpp @@ -27,7 +27,7 @@ public: // NOLINTNEXTLINE(google-default-arguments) virtual void move_to(const Vector2 &position, bool silent = false) noexcept = 0; - [[nodiscard]] virtual Vector2 where() const noexcept = 0; + [[nodiscard]] virtual auto where() const noexcept -> Vector2 = 0; virtual void ensure_position() noexcept = 0; |