From 5c1c672e018e41e5c87a0263a851684a52d9c1fb Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 27 Mar 2022 19:21:22 +0200 Subject: refactor: replace string matrix with template matrix --- src/interfaces/matrix.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/interfaces') 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 begin() const noexcept = 0; + [[nodiscard]] virtual MatrixIterator begin() const noexcept = 0; - [[nodiscard]] virtual MatrixIterator end() const noexcept = 0; + [[nodiscard]] virtual MatrixIterator end() const noexcept = 0; IMatrix &operator=(const IMatrix &matrix) noexcept = default; -- cgit v1.2.3-18-g5258