Changeset 641707d for libcfa/src/collections
- Timestamp:
- Jan 31, 2025, 1:52:18 PM (2 months ago)
- Branches:
- master
- Children:
- bbbff10
- Parents:
- 372d33c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified libcfa/src/collections/vector.hfa ¶
r372d33c r641707d 97 97 static inline void reserve(vector(T, allocator_t)* this, size_t size) 98 98 { 99 realloc_storage(&this->storage, this->size+1);99 realloc_storage(&this->storage, size); 100 100 } 101 101
Note: See TracChangeset
for help on using the changeset viewer.