Fix typo in BOOST_MOVE_STATIC_ASSERT

This commit is contained in:
Ion Gaztañaga
2024-01-02 17:10:09 +01:00
parent 4798a80e5b
commit 7c01072629

View File

@@ -129,7 +129,7 @@ template<unsigned> struct static_assert_test {};
#define BOOST_MOVE_STATIC_ASSERT(B) \
typedef ::boost::move_detail::static_assert_test<\
(unsigned)sizeof(::boost::move_detail::STATIC_ASSERTION_FAILURE<bool(B)>)>\
BOOST_JOIN(boost_static_assert_typedef_, __LINE__) BOOST_ATTRIBUTE_UNUSED
BOOST_JOIN(boost_move_static_assert_typedef_, __LINE__) BOOST_ATTRIBUTE_UNUSED
#endif