Skip to content

Commit

Permalink
Replace std:: with detail::stdr::
Browse files Browse the repository at this point in the history
  • Loading branch information
jk-jeon committed May 7, 2024
1 parent ff9d375 commit 19703c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/dragonbox/dragonbox.h
Original file line number Diff line number Diff line change
Expand Up @@ -2954,7 +2954,7 @@ namespace jkj {
auto r = detail::bits::rotr<32>(
detail::stdr::uint_least32_t(significand * UINT32_C(184254097)), 4);
auto b = r < UINT32_C(429497);
auto s = std::size_t(b);
auto s = detail::stdr::size_t(b);
significand = b ? r : significand;

r = detail::bits::rotr<32>(
Expand Down Expand Up @@ -2986,7 +2986,7 @@ namespace jkj {
auto r = detail::bits::rotr<64>(
detail::stdr::uint_least64_t(significand * UINT64_C(28999941890838049)), 8);
auto b = r < UINT64_C(184467440738);
auto s = std::size_t(b);
auto s = detail::stdr::size_t(b);
significand = b ? r : significand;

r = detail::bits::rotr<64>(
Expand Down

0 comments on commit 19703c7

Please sign in to comment.