mirror of
https://github.com/boostorg/container.git
synced 2025-08-02 22:14: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;
|
||||
};
|
||||
|
||||
/////////////////////////
|
||||
// move iterators
|
||||
/////////////////////////
|
||||
|
||||
template<class It>
|
||||
struct are_elements_contiguous< ::boost::move_iterator<It> >
|
||||
: are_elements_contiguous<It>
|
||||
{};
|
||||
|
||||
/////////////////////////
|
||||
// predeclarations
|
||||
/////////////////////////
|
||||
|
Reference in New Issue
Block a user