소스 검색

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>;

불러오는 중...
취소
저장