View | Details | Raw Unified | Return to issue 1041
Collapse All | Expand All

(-)solver/632/unxirxm3.pro/inc/stl_vector.h (+2 lines)
Lines 218-223 Link Here
218
  reference operator[](size_type __n) { return *(begin() + __n); }
218
  reference operator[](size_type __n) { return *(begin() + __n); }
219
  const_reference operator[](size_type __n) const { return *(begin() + __n); }
219
  const_reference operator[](size_type __n) const { return *(begin() + __n); }
220
220
221
  reference at(size_type __n) { return (*this)[__n]; }
222
221
  explicit vector(const allocator_type& __a = allocator_type())
223
  explicit vector(const allocator_type& __a = allocator_type())
222
    : _Base(__a) {}
224
    : _Base(__a) {}
223
225

Return to issue 1041