From 2e134cbee8fa96950b221d76a04f188bbe7efb99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sun, 18 May 2025 22:33:14 +0200 Subject: [PATCH] Fixes #92 ("C++26 errors: omission of ',' before varargs '...' is deprecated") --- doc/intrusive.qbk | 7 +++++++ include/boost/intrusive/detail/ebo_functor_holder.hpp | 8 ++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/doc/intrusive.qbk b/doc/intrusive.qbk index 49c4401..6a2b930 100644 --- a/doc/intrusive.qbk +++ b/doc/intrusive.qbk @@ -3902,6 +3902,13 @@ to be inserted in intrusive containers are allocated using `std::vector` or `std [section:release_notes Release Notes] +[section:release_notes_boost_1_89_00 Boost 1.89 Release] + +* Fixed bugs: + * [@https://github.com/boostorg/intrusive/issues/92 GitHub #92: ['C++26 errors: omission of ',' before varargs '...' is deprecated]] + +[endsect] + [section:release_notes_boost_1_86_00 Boost 1.86 Release] * Fixed bugs: diff --git a/include/boost/intrusive/detail/ebo_functor_holder.hpp b/include/boost/intrusive/detail/ebo_functor_holder.hpp index 1213112..f8f93af 100644 --- a/include/boost/intrusive/detail/ebo_functor_holder.hpp +++ b/include/boost/intrusive/detail/ebo_functor_holder.hpp @@ -88,7 +88,7 @@ struct is_unary_or_binary_function_impl { static const bool value = true; }; template -struct is_unary_or_binary_function_impl +struct is_unary_or_binary_function_impl { static const bool value = true; }; #else // BOOST_INTRUSIVE_TT_TEST_MSC_FUNC_SIGS @@ -110,7 +110,7 @@ struct is_unary_or_binary_function_impl { static const bool value = true; }; template -struct is_unary_or_binary_function_impl +struct is_unary_or_binary_function_impl { static const bool value = true; }; #endif @@ -124,7 +124,7 @@ struct is_unary_or_binary_function_impl { static const bool value = true; }; template -struct is_unary_or_binary_function_impl +struct is_unary_or_binary_function_impl { static const bool value = true; }; #else // BOOST_INTRUSIVE_TT_TEST_MSC_FUNC_SIGS @@ -146,7 +146,7 @@ struct is_unary_or_binary_function_impl { static const bool value = true; }; template -struct is_unary_or_binary_function_impl +struct is_unary_or_binary_function_impl { static const bool value = true; }; #endif