From fa29c4a063e2f96467f27afeea071c451c45835e Mon Sep 17 00:00:00 2001 From: Redstone1024 <2824517378@qq.com> Date: Wed, 4 Dec 2024 17:49:01 +0800 Subject: [PATCH] fix(numeric): add disambiguation macro for Math::DivAndRound family functions --- Redcraft.Utility/Source/Public/Numeric/Math.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Redcraft.Utility/Source/Public/Numeric/Math.h b/Redcraft.Utility/Source/Public/Numeric/Math.h index d53d83b..cf9675c 100644 --- a/Redcraft.Utility/Source/Public/Numeric/Math.h +++ b/Redcraft.Utility/Source/Public/Numeric/Math.h @@ -399,6 +399,8 @@ NODISCARD FORCEINLINE constexpr T DivAndCeil(T A, T B) return A >= 0 ? (A + B - 1) / B : A / B; } +RESOLVE_ARITHMETIC_AMBIGUITY_2_ARGS(CIntegral, DivAndCeil) + /** @return The quotient of the division of the given values and rounds down. */ template NODISCARD FORCEINLINE constexpr T DivAndFloor(T A, T B) @@ -406,6 +408,8 @@ NODISCARD FORCEINLINE constexpr T DivAndFloor(T A, T B) return A >= 0 ? A / B : (A - B + 1) / B; } +RESOLVE_ARITHMETIC_AMBIGUITY_2_ARGS(CIntegral, DivAndFloor) + /** @return The quotient of the division of the given values and rounds to nearest. */ template NODISCARD FORCEINLINE constexpr T DivAndRound(T A, T B) @@ -415,6 +419,8 @@ NODISCARD FORCEINLINE constexpr T DivAndRound(T A, T B) : (A - B / 2 + 1) / B; } +RESOLVE_ARITHMETIC_AMBIGUITY_2_ARGS(CIntegral, DivAndRound) + /** @return true if the given values are nearly equal, false otherwise. */ template NODISCARD FORCEINLINE constexpr bool IsNearlyEqual(T A, T B, T Epsilon = TNumericLimits::Epsilon())