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/interfaces/matrix.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/interfaces/matrix.hpp') diff --git a/src/interfaces/matrix.hpp b/src/interfaces/matrix.hpp index 8242b18..e0a92bf 100644 --- a/src/interfaces/matrix.hpp +++ b/src/interfaces/matrix.hpp @@ -36,12 +36,12 @@ public: /** * Returns the number of rows the matrix has. */ - [[nodiscard]] virtual unsigned int rows() const = 0; + [[nodiscard]] virtual uint32_t rows() const = 0; /** * Returns the number of columns the matrix has. */ - [[nodiscard]] virtual unsigned int columns() const = 0; + [[nodiscard]] virtual uint32_t columns() const = 0; }; template -- cgit v1.2.3-18-g5258