diff options
Diffstat (limited to 'compat/math.hpp')
-rw-r--r-- | compat/math.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/math.hpp b/compat/math.hpp index 014604e6..eae1435e 100644 --- a/compat/math.hpp +++ b/compat/math.hpp @@ -68,7 +68,7 @@ inline auto uround(const t& val) -> std::enable_if_t<!std::is_integral_v<std::de #include "macros.hpp" template <typename T> -static force_inline constexpr auto signum(T x) +static cc_forceinline constexpr auto signum(T x) { return x < T(0) ? -1 : 1; } |