Subversion Repositories Kolibri OS

Rev

Rev 5134 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5134 Rev 6325
Line 131... Line 131...
131
    _Safe_iterator_base* _M_const_local_iterators;
131
    _Safe_iterator_base* _M_const_local_iterators;
Line 132... Line 132...
132
 
132
 
133
  protected:
133
  protected:
134
    // Initialize with a version number of 1 and no iterators
134
    // Initialize with a version number of 1 and no iterators
135
    _Safe_unordered_container_base()
135
    _Safe_unordered_container_base()
136
    : _M_local_iterators(0), _M_const_local_iterators(0)
136
    : _M_local_iterators(nullptr), _M_const_local_iterators(nullptr)
Line -... Line 137...
-
 
137
    { }
-
 
138
 
-
 
139
    // Initialize with a version number of 1 and no iterators
-
 
140
    _Safe_unordered_container_base(const _Safe_unordered_container_base&)
-
 
141
    noexcept
-
 
142
    : _Safe_unordered_container_base() { }
-
 
143
 
-
 
144
    _Safe_unordered_container_base(_Safe_unordered_container_base&& __x)
-
 
145
    noexcept
-
 
146
    : _Safe_unordered_container_base()
137
    { }
147
    { this->_M_swap(__x); }
138
 
148
 
139
    /** Notify all iterators that reference this container that the
149
    /** Notify all iterators that reference this container that the
140
	container is being destroyed. */
150
	container is being destroyed. */