+2018-10-15 François Dumont <fdumont@gcc.gnu.org>
+
+ * include/debug/vector (vector<>::cbegin()): Use C++11 direct
+ initialization.
+ (vector<>::cend()): Likewise.
+ (vector<>::emplace(const_iterator, _Args&&...)): Likewise and use
+ consistent iterator comparison.
+ (vector<>::insert(const_iterator, size_type, const _Tp&)): Likewise.
+ (vector<>::insert(const_iterator, _InputIterator, _InputIterator)):
+ Likewise.
+ (vector<>::erase(const_iterator)): Likewise.
+ (vector<>::erase(const_iterator, const_iterator)): Likewise.
+
2018-10-12 Jonathan Wakely <jwakely@redhat.com>
Initial commit of Networking TS implementation.
#if __cplusplus >= 201103L
const_iterator
cbegin() const noexcept
- { return const_iterator(_Base::begin(), this); }
+ { return { _Base::begin(), this }; }
const_iterator
cend() const noexcept
- { return const_iterator(_Base::end(), this); }
+ { return { _Base::end(), this }; }
const_reverse_iterator
crbegin() const noexcept
{
__glibcxx_check_insert(__position);
bool __realloc = this->_M_requires_reallocation(this->size() + 1);
- difference_type __offset = __position.base() - _Base::begin();
+ difference_type __offset = __position.base() - _Base::cbegin();
_Base_iterator __res = _Base::emplace(__position.base(),
std::forward<_Args>(__args)...);
if (__realloc)
else
this->_M_invalidate_after_nth(__offset);
this->_M_update_guaranteed_capacity();
- return iterator(__res, this);
+ return { __res, this };
}
#endif
{
__glibcxx_check_insert(__position);
bool __realloc = this->_M_requires_reallocation(this->size() + 1);
- difference_type __offset = __position.base() - _Base::begin();
+ difference_type __offset
+ = __position.base() - __position._M_get_sequence()->_M_base().begin();
_Base_iterator __res = _Base::insert(__position.base(), __x);
if (__realloc)
this->_M_invalidate_all();
else
this->_M_invalidate_after_nth(__offset);
this->_M_update_guaranteed_capacity();
- return iterator(__res, this);
+ return { __res, this };
}
#else
void
else
this->_M_invalidate_after_nth(__offset);
this->_M_update_guaranteed_capacity();
- return iterator(__res, this);
+ return { __res, this };
}
#else
template<class _InputIterator>
#endif
{
__glibcxx_check_erase(__position);
- difference_type __offset = __position.base() - _Base::begin();
+ difference_type __offset
+ = __position.base() - __position._M_get_sequence()->_M_base().begin();
_Base_iterator __res = _Base::erase(__position.base());
this->_M_invalidate_after_nth(__offset);
return iterator(__res, this);
if (__first.base() != __last.base())
{
- difference_type __offset = __first.base() - _Base::begin();
+ difference_type __offset =
+ __first.base() - __first._M_get_sequence()->_M_base().begin();
_Base_iterator __res = _Base::erase(__first.base(),
__last.base());
this->_M_invalidate_after_nth(__offset);
}
else
#if __cplusplus >= 201103L
- return begin() + (__first.base() - cbegin().base());
+ return { _Base::begin() + (__first.base() - _Base::cbegin()), this };
#else
return __first;
#endif