From e997641e7d385748d706209c2fff28871c31c667 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Tue, 2 Jan 2024 17:10:42 +0100 Subject: [PATCH] Fix typo in BOOST_INTRUSIVE_STATIC_ASSERT --- include/boost/intrusive/detail/workaround.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/intrusive/detail/workaround.hpp b/include/boost/intrusive/detail/workaround.hpp index fd0302bd..f925a87a 100644 --- a/include/boost/intrusive/detail/workaround.hpp +++ b/include/boost/intrusive/detail/workaround.hpp @@ -108,7 +108,7 @@ template struct static_assert_test {}; #define BOOST_INTRUSIVE_STATIC_ASSERT(B) \ typedef ::boost::intrusive::detail::static_assert_test<\ (unsigned)sizeof(::boost::intrusive::detail::STATIC_ASSERTION_FAILURE)>\ - BOOST_JOIN(boost_static_assert_typedef_, __LINE__) BOOST_ATTRIBUTE_UNUSED + BOOST_JOIN(boost_intrusive_static_assert_typedef_, __LINE__) BOOST_ATTRIBUTE_UNUSED #endif