From 0854ebbc0720c1691f2de661c4ce3467b71746c6 Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 6 Mar 2022 13:29:10 +0100 Subject: refactor: replace unsigned int with uint32_t --- src/engine/graphics/string_matrix.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/engine/graphics/string_matrix.hpp') diff --git a/src/engine/graphics/string_matrix.hpp b/src/engine/graphics/string_matrix.hpp index 351053e..540d63b 100644 --- a/src/engine/graphics/string_matrix.hpp +++ b/src/engine/graphics/string_matrix.hpp @@ -46,16 +46,16 @@ public: /** * Returns the number of rows the matrix has. */ - [[nodiscard]] unsigned int rows() const override; + [[nodiscard]] uint32_t rows() const override; /** * Returns the number of columns the matrix has. */ - [[nodiscard]] unsigned int columns() const override; + [[nodiscard]] uint32_t columns() const override; private: std::vector> _matrix; - unsigned int _rows; - unsigned int _columns; + uint32_t _rows; + uint32_t _columns; }; -- cgit v1.2.3-18-g5258