Home
last modified time | relevance | path

Searched defs:slist_node_traits (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/boost/intrusive/detail/
Dslist_node.hpp43 struct slist_node_traits struct
45 typedef slist_node<VoidPointer> node;
46 typedef typename node::node_ptr node_ptr;
47 typedef typename pointer_rebind<VoidPointer, const node>::type const_node_ptr;
49 BOOST_INTRUSIVE_FORCEINLINE static node_ptr get_next(const const_node_ptr & n) in get_next()
52 BOOST_INTRUSIVE_FORCEINLINE static node_ptr get_next(const node_ptr & n) in get_next()
55 BOOST_INTRUSIVE_FORCEINLINE static void set_next(node_ptr n, node_ptr next) in set_next()
/third_party/boost/boost/container/detail/
Dblock_slist.hpp45 struct slist_node_traits struct
47 typedef slist_node node;
48 typedef slist_node* node_ptr;
49 typedef const slist_node* const_node_ptr;
51 static node_ptr get_next(const_node_ptr n) in get_next()
54 static void set_next(const node_ptr & n, const node_ptr & next) in set_next()