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 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 <typename Element>