Skip to content

Commit a736cd9

Browse files
committed
Fix broken macro
1 parent 645f11a commit a736cd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/boost/int128/detail/int128_imp.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1861,7 +1861,7 @@ BOOST_INT128_FORCE_INLINE constexpr int128_t library_sub(const int128_t lhs, con
18611861

18621862
BOOST_INT128_FORCE_INLINE constexpr int128_t default_sub(const int128_t lhs, const int128_t rhs) noexcept
18631863
{
1864-
#if defined(BOOST_INT128_HAS_BUILTIN_SUB_OVERFLOW) && (!defined(__aarch64__) || defined(__APPLE__) || !defined(BOOST_INT128_HAS_INT128)))
1864+
#if defined(BOOST_INT128_HAS_BUILTIN_SUB_OVERFLOW) && (!defined(__aarch64__) || defined(__APPLE__) || !defined(BOOST_INT128_HAS_INT128))
18651865

18661866
// __builtin_sub_overflow is marked constexpr so we don't need if consteval handling
18671867
std::uint64_t result_low {};

0 commit comments

Comments
 (0)