aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/matrix.hpp
diff options
context:
space:
mode:
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>