aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/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/interfaces/matrix.hpp
parenta285df324deb579d262ea7cf484de4d6b11b28e4 (diff)
refactor: replace unsigned int with uint32_t
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>