Merge remote-tracking branch 'origin/master' into 1.9
This commit is contained in:
@@ -329,6 +329,13 @@ public:
|
||||
return *this;
|
||||
}
|
||||
|
||||
Iterator& operator=(Iterator&& v)
|
||||
{
|
||||
_collection = v._collection;
|
||||
_index = v._index;
|
||||
return *this;
|
||||
}
|
||||
|
||||
Iterator& operator++()
|
||||
{
|
||||
const int32 capacity = _collection->_size;
|
||||
|
||||
Reference in New Issue
Block a user