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/matrix.hpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/interfaces/matrix.hpp') diff --git a/src/interfaces/matrix.hpp b/src/interfaces/matrix.hpp index 5dc5f2e..ab5f40b 100644 --- a/src/interfaces/matrix.hpp +++ b/src/interfaces/matrix.hpp @@ -10,6 +10,8 @@ template class IMatrix { public: + virtual ~IMatrix() = default; + /** * Fills the matrix with a element. * -- cgit v1.2.3-18-g5258