From c2f41a5b278df2837f4cc5617df07248a048d93c Mon Sep 17 00:00:00 2001 From: HampusM Date: Wed, 2 Mar 2022 21:24:34 +0100 Subject: refactor: add virtual destructors to interfaces This is required by clang++ for some reason... --- src/interfaces/vector2.hpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/interfaces/vector2.hpp') diff --git a/src/interfaces/vector2.hpp b/src/interfaces/vector2.hpp index a58686f..569dc30 100644 --- a/src/interfaces/vector2.hpp +++ b/src/interfaces/vector2.hpp @@ -6,6 +6,8 @@ class IVector2 { public: + virtual ~IVector2() = default; + /** * Returns the X coordinate. */ -- cgit v1.2.3-18-g5258