diff options
author | HampusM <hampus@hampusmat.com> | 2022-03-06 13:29:10 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-13 17:56:54 +0200 |
commit | 0854ebbc0720c1691f2de661c4ce3467b71746c6 (patch) | |
tree | 6bede8baea394711056db7109f395e71e880e03d /src/engine/user/cursor.tpp | |
parent | a285df324deb579d262ea7cf484de4d6b11b28e4 (diff) |
refactor: replace unsigned int with uint32_t
Diffstat (limited to 'src/engine/user/cursor.tpp')
-rw-r--r-- | src/engine/user/cursor.tpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/user/cursor.tpp b/src/engine/user/cursor.tpp index 224418e..0743ae8 100644 --- a/src/engine/user/cursor.tpp +++ b/src/engine/user/cursor.tpp @@ -19,7 +19,7 @@ constexpr auto get_direction_format_map() } template <Direction::value_type direction> -constexpr void CursorController::move(const unsigned int &amount) const +constexpr void CursorController::move(const uint32_t &amount) const { constexpr auto direction_format_map = get_direction_format_map(); |