From 66cfbfa3b3606d3b8db52b6ca96b113637db0f75 Mon Sep 17 00:00:00 2001 From: Redstone1024 <2824517378@qq.com> Date: Wed, 4 Dec 2024 16:05:44 +0800 Subject: [PATCH] fix(maiscellaneous): fix the definition of the uint_fast family --- Redcraft.Utility/Source/Public/Miscellaneous/Platform.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Redcraft.Utility/Source/Public/Miscellaneous/Platform.h b/Redcraft.Utility/Source/Public/Miscellaneous/Platform.h index c6c303c..57b3e0f 100644 --- a/Redcraft.Utility/Source/Public/Miscellaneous/Platform.h +++ b/Redcraft.Utility/Source/Public/Miscellaneous/Platform.h @@ -406,10 +406,10 @@ using uint64_least = NAMESPACE_STD::uint_least64_t; using uint128_least = uint128; #endif -using uint8_fast = NAMESPACE_STD::int_fast8_t; -using uint16_fast = NAMESPACE_STD::int_fast16_t; -using uint32_fast = NAMESPACE_STD::int_fast32_t; -using uint64_fast = NAMESPACE_STD::int_fast64_t; +using uint8_fast = NAMESPACE_STD::uint_fast8_t; +using uint16_fast = NAMESPACE_STD::uint_fast16_t; +using uint32_fast = NAMESPACE_STD::uint_fast32_t; +using uint64_fast = NAMESPACE_STD::uint_fast64_t; #if PLATFORM_HAS_INT128 using uint128_fast = uint128;