From ffa360edce0ad30d0df26ad6b873412e262b22d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Le=20Bihan?= Date: Tue, 25 May 2021 09:40:58 +0200 Subject: [PATCH] adding some overrides where it was missing --- lib/Ray/sources/Drawables/ADrawable2D.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Ray/sources/Drawables/ADrawable2D.hpp b/lib/Ray/sources/Drawables/ADrawable2D.hpp index eeabac1e..bd0e1ba6 100644 --- a/lib/Ray/sources/Drawables/ADrawable2D.hpp +++ b/lib/Ray/sources/Drawables/ADrawable2D.hpp @@ -32,10 +32,10 @@ namespace RAY::Drawables::Drawables2D { ADrawable2D(const ADrawable2D &) = default; //! @brief A default destructor - virtual ~ADrawable2D() = default; + ~ADrawable2D() override = default; //! @return the top-left position of the ADrawable - const Vector2 &getPosition(void) const; + const RAY::Vector2 &getPosition(void) const; //! @return the color of the ADrawable const RAY::Color &getColor(void) const;