mirror of
https://github.com/boostorg/container.git
synced 2025-08-03 06:24:26 +02:00
Update "are_elements_contiguous" for move iterators.
This commit is contained in:
@@ -54,6 +54,15 @@ struct are_elements_contiguous<T*>
|
|||||||
static const bool value = true;
|
static const bool value = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/////////////////////////
|
||||||
|
// move iterators
|
||||||
|
/////////////////////////
|
||||||
|
|
||||||
|
template<class It>
|
||||||
|
struct are_elements_contiguous< ::boost::move_iterator<It> >
|
||||||
|
: are_elements_contiguous<It>
|
||||||
|
{};
|
||||||
|
|
||||||
/////////////////////////
|
/////////////////////////
|
||||||
// predeclarations
|
// predeclarations
|
||||||
/////////////////////////
|
/////////////////////////
|
||||||
|
Reference in New Issue
Block a user