From dadaabe91f02815864a36eed062d30c0f1384498 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sun, 12 Apr 2026 21:10:21 +0200 Subject: [PATCH] Define segduo constructors again, eliminating them breaks code --- .../boost/container/experimental/segmented_iterator_traits.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/boost/container/experimental/segmented_iterator_traits.hpp b/include/boost/container/experimental/segmented_iterator_traits.hpp index 7ad1dba..c7a631a 100644 --- a/include/boost/container/experimental/segmented_iterator_traits.hpp +++ b/include/boost/container/experimental/segmented_iterator_traits.hpp @@ -46,6 +46,9 @@ struct segduo { T1 first; T2 second; + + BOOST_CONTAINER_FORCEINLINE segduo() {} + BOOST_CONTAINER_FORCEINLINE segduo(const T1 &f, const T2 &s) : first(f), second(s) {} }; struct unreachable_sentinel_t