aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/matrix.hpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-03-02 21:24:34 +0100
committerHampusM <hampus@hampusmat.com>2022-06-13 17:56:54 +0200
commitc2f41a5b278df2837f4cc5617df07248a048d93c (patch)
tree0187794794cd96958720219340b85d31e6194c39 /src/interfaces/matrix.hpp
parent68ee3c67a8d23f68d9f87aea08548aba598ef14a (diff)
refactor: add virtual destructors to interfaces
This is required by clang++ for some reason...
Diffstat (limited to 'src/interfaces/matrix.hpp')
-rw-r--r--src/interfaces/matrix.hpp2
1 files changed, 2 insertions, 0 deletions
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 <typename Element>
class IMatrix
{
public:
+ virtual ~IMatrix() = default;
+
/**
* Fills the matrix with a element.
*