Skip to content

Commit 0c1b469

Browse files
committed
Replace _M_ARM64 with _M_ARM for 32 bit path
1 parent c4ce850 commit 0c1b469

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/boost/json/detail/charconv/detail/emulated128.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ struct uint128
5858

5959
static inline std::uint64_t umul64(std::uint32_t x, std::uint32_t y) noexcept
6060
{
61-
#if defined(BOOST_JSON_HAS_MSVC_32BIT_INTRINSICS) && !defined(_M_ARM64)
61+
#if defined(BOOST_JSON_HAS_MSVC_32BIT_INTRINSICS) && !defined(_M_ARM)
6262

6363
return __emulu(x, y);
6464

0 commit comments

Comments
 (0)