From ad878e2c2c6d2b49c3a80d2cf42df853aa9e1bfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sun, 22 Feb 2026 17:33:56 +0100 Subject: [PATCH] Remove unneeded variadic template for value_init_t overload --- include/boost/container/allocator_traits.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/container/allocator_traits.hpp b/include/boost/container/allocator_traits.hpp index 66acaf5..0735d34 100644 --- a/include/boost/container/allocator_traits.hpp +++ b/include/boost/container/allocator_traits.hpp @@ -489,7 +489,7 @@ struct allocator_traits //! otherwise, invokes `placement new` (static_cast(p)) T() //! //! Note: Non-standard extension . - template + template inline static void construct(Allocator & a, T* p, const value_init_t &) { allocator_traits::construct(a, p); }