forked from boostorg/container
Fixes a small issue that prevented the use of iterators of containers of incomplete types. Added iterators of incomp-types to unit-tests.
This commit is contained in:
@@ -87,6 +87,11 @@ struct slist_node
|
||||
{ return this->m_data; }
|
||||
};
|
||||
|
||||
template <class T, class VoidPointer>
|
||||
struct iiterator_node_value_type< slist_node<T,VoidPointer> > {
|
||||
typedef T type;
|
||||
};
|
||||
|
||||
template<class Allocator>
|
||||
struct intrusive_slist_type
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user