Define segduo constructors again, eliminating them breaks code

This commit is contained in:
Ion Gaztañaga
2026-04-12 21:10:21 +02:00
parent c0b63942f8
commit dadaabe91f
@@ -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