From aa25af1928cc275537276c1a50e6ba49333a3aec Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 2 Dec 2024 19:06:25 +0100 Subject: Avoid -Wdeprecated-variadic-comma-omission with GCC 15 trunk -std=c++26 ...since "c++: Implement C++26 P3176R1 - The Oxford variadic comma" --- include/boost/move/detail/unique_ptr_meta_utils.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/move/detail/unique_ptr_meta_utils.hpp b/include/boost/move/detail/unique_ptr_meta_utils.hpp index 4c6aeb5..27154e0 100644 --- a/include/boost/move/detail/unique_ptr_meta_utils.hpp +++ b/include/boost/move/detail/unique_ptr_meta_utils.hpp @@ -497,7 +497,7 @@ struct is_unary_function_impl { static const bool value = true; }; template -struct is_unary_function_impl +struct is_unary_function_impl { static const bool value = true; }; #else // BOOST_MOVE_TT_TEST_MSC_FUNC_SIGS @@ -519,7 +519,7 @@ struct is_unary_function_impl { static const bool value = true; }; template -struct is_unary_function_impl +struct is_unary_function_impl { static const bool value = true; }; #endif -- 2.47.1