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 10a3590..8edad80 100644
--- a/src/interfaces/matrix.hpp
+++ b/src/interfaces/matrix.hpp
@@ -23,9 +23,9 @@ public:
virtual void set(const Vector2 &pos, Element element) noexcept = 0;
- [[nodiscard]] virtual auto get_row_cnt() const noexcept -> uint32_t = 0;
+ [[nodiscard]] virtual auto get_row_cnt() const noexcept -> std::uint32_t = 0;
- [[nodiscard]] virtual auto get_column_cnt() const noexcept -> uint32_t = 0;
+ [[nodiscard]] virtual auto get_column_cnt() const noexcept -> std::uint32_t = 0;
[[nodiscard]] virtual auto begin() const noexcept -> MatrixIterator<Element> = 0;