From cbee82ab4ac4d2b7299b497a45e4e79bdbd38b09 Mon Sep 17 00:00:00 2001 From: Matt Borland Date: Fri, 9 Jun 2023 13:31:05 +0200 Subject: [PATCH] Fix 32-bit testing --- test/test_128bit_emulation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_128bit_emulation.cpp b/test/test_128bit_emulation.cpp index fe1c685..8dbe0a4 100644 --- a/test/test_128bit_emulation.cpp +++ b/test/test_128bit_emulation.cpp @@ -190,7 +190,7 @@ void test_bitwise_operators() void test_memcpy() { - #ifdef BOOST_CHARCONV_HAS_FLOAT128 + #if defined(BOOST_CHARCONV_HAS_FLOAT128) && defined(BOOST_CHARCONV_HAS_INT128) __float128 fval = 1e4000Q; boost::uint128_type ref; trivial_uint128 cpyval;