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.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/matrix.hpp b/src/interfaces/matrix.hpp
index c22c0a7..2b33342 100644
--- a/src/interfaces/matrix.hpp
+++ b/src/interfaces/matrix.hpp
@@ -29,9 +29,9 @@ public:
[[nodiscard]] virtual uint32_t get_column_cnt() const noexcept = 0;
- [[nodiscard]] virtual MatrixIterator<std::string_view> begin() const noexcept = 0;
+ [[nodiscard]] virtual MatrixIterator<Element> begin() const noexcept = 0;
- [[nodiscard]] virtual MatrixIterator<std::string_view> end() const noexcept = 0;
+ [[nodiscard]] virtual MatrixIterator<Element> end() const noexcept = 0;
IMatrix &operator=(const IMatrix &matrix) noexcept = default;