From 19cf6211cadb3a5864a35274f70f5da55eefbdf8 Mon Sep 17 00:00:00 2001 From: Matei David Date: Thu, 15 May 2014 13:10:51 -0400 Subject: [PATCH] lib: new "header_holder_type" container option --- include/boost/intrusive/options.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/boost/intrusive/options.hpp b/include/boost/intrusive/options.hpp index 7652f9a..dafd91f 100644 --- a/include/boost/intrusive/options.hpp +++ b/include/boost/intrusive/options.hpp @@ -182,6 +182,9 @@ struct get_node_traits //!obtain constant-time size() member. BOOST_INTRUSIVE_OPTION_CONSTANT(constant_time_size, bool, Enabled, constant_time_size) +//!This option setter specifies a container header holder type +BOOST_INTRUSIVE_OPTION_TYPE(header_holder_type, Header_Holder, Header_Holder, header_holder_type) + //!This option setter specifies the type that //!the container will use to store its size. BOOST_INTRUSIVE_OPTION_TYPE(size_type, SizeType, SizeType, size_type)