From d3892008acd1127dc20054dd664072957146a37a Mon Sep 17 00:00:00 2001 From: ian Date: Mon, 8 Apr 2024 23:00:50 -0400 Subject: [PATCH] Update floating_point_traits header to use the support namespace --- include/ccmath/internal/support/floating_point_traits.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/ccmath/internal/support/floating_point_traits.hpp b/include/ccmath/internal/support/floating_point_traits.hpp index 1fd985b9..088af552 100644 --- a/include/ccmath/internal/support/floating_point_traits.hpp +++ b/include/ccmath/internal/support/floating_point_traits.hpp @@ -13,7 +13,7 @@ #include #include -namespace ccm::helpers +namespace ccm::support { template struct floating_point_traits; @@ -96,5 +96,5 @@ namespace ccm::helpers const auto bits = __builtin_bit_cast(uint_type, x); return bits & ~traits::shifted_sign_mask; } -} +} // namespace ccm::support