From 6b0e2a25cf1e98d3f11d4e6c0305dd327048bbb8 Mon Sep 17 00:00:00 2001 From: HampusM Date: Mon, 27 Jun 2022 22:08:43 +0200 Subject: refactor: use int types from std namespace --- src/engine/graphics/matrix_impl.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/engine/graphics/matrix_impl.hpp') diff --git a/src/engine/graphics/matrix_impl.hpp b/src/engine/graphics/matrix_impl.hpp index 527c61f..9105149 100644 --- a/src/engine/graphics/matrix_impl.hpp +++ b/src/engine/graphics/matrix_impl.hpp @@ -70,13 +70,13 @@ void Matrix::set(const Vector2 &pos, Element element) noexcept } template -auto Matrix::get_row_cnt() const noexcept -> uint32_t +auto Matrix::get_row_cnt() const noexcept -> std::uint32_t { return _row_cnt; } template -auto Matrix::get_column_cnt() const noexcept -> uint32_t +auto Matrix::get_column_cnt() const noexcept -> std::uint32_t { return _column_cnt; } -- cgit v1.2.3-18-g5258