aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/matrix.hpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-03-27 19:21:22 +0200
committerHampusM <hampus@hampusmat.com>2022-06-13 17:56:57 +0200
commit5c1c672e018e41e5c87a0263a851684a52d9c1fb (patch)
tree815a067fb558fe3c55b19842402d68e0dc0953f2 /src/interfaces/matrix.hpp
parent15c7a8fda742cc393310d75e0e1be89c3042eac0 (diff)
refactor: replace string matrix with template matrix
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;