aboutsummaryrefslogtreecommitdiff
path: root/src/engine/graphics/matrix_iterator_impl.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/graphics/matrix_iterator_impl.hpp')
-rw-r--r--src/engine/graphics/matrix_iterator_impl.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/graphics/matrix_iterator_impl.hpp b/src/engine/graphics/matrix_iterator_impl.hpp
index 4b2c785..95846fe 100644
--- a/src/engine/graphics/matrix_iterator_impl.hpp
+++ b/src/engine/graphics/matrix_iterator_impl.hpp
@@ -51,7 +51,7 @@ auto MatrixRowIterator<Element>::operator!=(const MatrixRowIterator &rhs) const
// Matrix row
template <typename Element>
-MatrixRow<Element>::MatrixRow(RowPtr row_ptr, const uint32_t &column_cnt) noexcept
+MatrixRow<Element>::MatrixRow(RowPtr row_ptr, const std::uint32_t &column_cnt) noexcept
: _row_ptr(row_ptr), _column_cnt(column_cnt)
{
}
@@ -73,7 +73,7 @@ auto MatrixRow<Element>::end() const noexcept -> MatrixRowIterator<Element>
template <typename Element>
MatrixIterator<Element>::MatrixIterator(
RowPtr row_ptr,
- const uint32_t &column_cnt) noexcept
+ const std::uint32_t &column_cnt) noexcept
: _row_ptr(row_ptr), _column_cnt(column_cnt)
{
}