- File:
-
- 1 edited
-
libcfa/src/containers/vector.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/containers/vector.cfa
raccc9df9 rfd54fef 18 18 #include <stdlib.hfa> 19 19 20 #pragma GCC visibility push(default)21 22 20 forall(T, allocator_t | allocator_c(T, allocator_t)) 23 staticvoid copy_internal(vector(T, allocator_t)* this, vector(T, allocator_t)* other);21 void copy_internal(vector(T, allocator_t)* this, vector(T, allocator_t)* other); 24 22 25 23 //------------------------------------------------------------------------------ … … 85 83 86 84 forall(T, allocator_t | allocator_c(T, allocator_t)) 87 staticvoid copy_internal(vector(T, allocator_t)* this, vector(T, allocator_t)* other)85 void copy_internal(vector(T, allocator_t)* this, vector(T, allocator_t)* other) 88 86 { 89 87 this->size = other->size;
Note:
See TracChangeset
for help on using the changeset viewer.