Skip to content

Commit dadaabe

Browse files
committed
Define segduo constructors again, eliminating them breaks code
1 parent c0b6394 commit dadaabe

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

include/boost/container/experimental/segmented_iterator_traits.hpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ struct segduo
4646
{
4747
T1 first;
4848
T2 second;
49+
50+
BOOST_CONTAINER_FORCEINLINE segduo() {}
51+
BOOST_CONTAINER_FORCEINLINE segduo(const T1 &f, const T2 &s) : first(f), second(s) {}
4952
};
5053

5154
struct unreachable_sentinel_t

0 commit comments

Comments
 (0)