aboutsummaryrefslogtreecommitdiff
path: root/src/engine/graphics/string_matrix.hpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-03-06 13:29:10 +0100
committerHampusM <hampus@hampusmat.com>2022-06-13 17:56:54 +0200
commit0854ebbc0720c1691f2de661c4ce3467b71746c6 (patch)
tree6bede8baea394711056db7109f395e71e880e03d /src/engine/graphics/string_matrix.hpp
parenta285df324deb579d262ea7cf484de4d6b11b28e4 (diff)
refactor: replace unsigned int with uint32_t
Diffstat (limited to 'src/engine/graphics/string_matrix.hpp')
-rw-r--r--src/engine/graphics/string_matrix.hpp8
1 files changed, 4 insertions, 4 deletions
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<std::vector<std::string_view>> _matrix;
- unsigned int _rows;
- unsigned int _columns;
+ uint32_t _rows;
+ uint32_t _columns;
};