Browse Source

fixed some permissions

cbor
Ludovic 'Archivist' Lagouardette 3 years ago
parent
commit
b7e5d3f483
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      include/gp/vector.hpp

+ 1
- 1
include/gp/vector.hpp View File

@ -8,11 +8,11 @@
namespace gp{
template<typename T>
class vector{
public:
T* ary;
size_t sz;
size_t cap;
gp::reference_wrapper<allocator> alloc;
public:
using associated_iterator = pointer_iterator<T, 1>;
using associated_const_iterator = const_pointer_iterator<T, 1>;
using associated_riterator = pointer_iterator<T, -1>;

Loading…
Cancel
Save