aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/matrix.hpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-06-02 19:51:54 +0200
committerHampusM <hampus@hampusmat.com>2022-06-13 17:57:00 +0200
commiteecf4b1e666211a13afa56f93477c55e8fd01621 (patch)
tree410510d6e058995174d5a5b0f535fb457a0c3542 /src/interfaces/matrix.hpp
parent87f55120f96d0f4f80b497dc9006d89df2dda125 (diff)
feat: implement game of lifev0.1.0
Diffstat (limited to 'src/interfaces/matrix.hpp')
-rw-r--r--src/interfaces/matrix.hpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/interfaces/matrix.hpp b/src/interfaces/matrix.hpp
index 5a01943..010138f 100644
--- a/src/interfaces/matrix.hpp
+++ b/src/interfaces/matrix.hpp
@@ -9,15 +9,10 @@
#include <memory>
template <typename Element>
+// NOLINTNEXTLINE(cppcoreguidelines-special-member-functions)
class IMatrix
{
public:
- IMatrix() noexcept = default;
-
- IMatrix(const IMatrix &matrix) noexcept = default;
-
- IMatrix(IMatrix &&matrix) noexcept = default;
-
virtual ~IMatrix() noexcept = default;
virtual void fill(Element element) noexcept = 0;
@@ -33,10 +28,6 @@ public:
[[nodiscard]] virtual auto begin() const noexcept -> MatrixIterator<Element> = 0;
[[nodiscard]] virtual auto end() const noexcept -> MatrixIterator<Element> = 0;
-
- auto operator=(const IMatrix &matrix) noexcept -> IMatrix & = default;
-
- auto operator=(IMatrix &&matrix) noexcept -> IMatrix & = default;
};
template <typename Element>