Преглед на файлове

Handles move assignment correctly

channel
Ludovic 'Archivist' Lagouardette преди 3 години
родител
ревизия
11db96378a
променени са 1 файла, в които са добавени 4 реда и са изтрити 4 реда
  1. +4
    -4
      include/gp/containers/vector.hpp

+ 4
- 4
include/gp/containers/vector.hpp Целия файл

@ -14,10 +14,10 @@ namespace gp{
*/
template<typename T>
class vector final {
T* ary = nullptr;
size_t sz = 0;
size_t cap = 0;
gp::reference_wrapper<allocator> alloc;
T* ary = nullptr; //< The data
size_t sz = 0; //< the used size of the array
size_t cap = 0; //< the available capacity of the array
gp::reference_wrapper<allocator> alloc; //< the allocator
public:
using associated_iterator = pointer_iterator<T, 1>;
using associated_const_iterator = const_pointer_iterator<T, 1>;

Зареждане…
Отказ
Запис