Skip to content

Commit f7f22d8

Browse files
authored
Merge pull request #322 from cppalliance/318
Adjust alignment on 32-bit systems
2 parents 4d6498d + ed6a671 commit f7f22d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/boost/int128/detail/uint128_imp.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace boost {
2525
namespace int128 {
2626

2727
BOOST_INT128_EXPORT struct
28-
#ifdef BOOST_INT128_HAS_INT128
28+
#if defined(BOOST_INT128_HAS_INT128) || defined(BOOST_INT128_HAS_MSVC_INT128)
2929
alignas(alignof(detail::builtin_u128))
3030
#else
3131
alignas(16)

0 commit comments

Comments
 (0)