Changeset accc9df9
- Timestamp:
- May 13, 2022, 4:50:55 PM (2 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
- Children:
- 789f279
- Parents:
- 0aa4beb
- Location:
- libcfa/src/containers
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/containers/maybe.cfa
r0aa4beb raccc9df9 17 17 #include <assert.h> 18 18 19 #pragma GCC visibility push(default) 19 20 20 21 forall(T) -
libcfa/src/containers/result.cfa
r0aa4beb raccc9df9 17 17 #include <assert.h> 18 18 19 #pragma GCC visibility push(default) 19 20 20 21 forall(T, E) -
libcfa/src/containers/string.cfa
r0aa4beb raccc9df9 18 18 #include <stdlib.hfa> 19 19 20 #pragma GCC visibility push(default) 20 21 21 22 /* -
libcfa/src/containers/string_sharectx.hfa
r0aa4beb raccc9df9 16 16 #pragma once 17 17 18 #pragma GCC visibility push(default) 19 18 20 //######################### String Sharing Context ######################### 19 21 20 22 struct VbyteHeap; 21 23 22 // A string_sharectx 24 // A string_sharectx 23 25 // 24 26 // Usage: -
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.