Changeset accc9df9 for libcfa/src/containers/vector.cfa
- Timestamp:
- May 13, 2022, 4:50:55 PM (2 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
- Children:
- 789f279
- Parents:
- 0aa4beb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/containers/vector.cfa
r0aa4beb raccc9df9 18 18 #include <stdlib.hfa> 19 19 20 #pragma GCC visibility push(default) 21 20 22 forall(T, allocator_t | allocator_c(T, allocator_t)) 21 void copy_internal(vector(T, allocator_t)* this, vector(T, allocator_t)* other);23 static void copy_internal(vector(T, allocator_t)* this, vector(T, allocator_t)* other); 22 24 23 25 //------------------------------------------------------------------------------ … … 83 85 84 86 forall(T, allocator_t | allocator_c(T, allocator_t)) 85 void copy_internal(vector(T, allocator_t)* this, vector(T, allocator_t)* other)87 static void copy_internal(vector(T, allocator_t)* this, vector(T, allocator_t)* other) 86 88 { 87 89 this->size = other->size;
Note: See TracChangeset
for help on using the changeset viewer.