Changes in src/libcfa/containers/vector [aca65621:67cf18c]
- File:
-
- 1 edited
-
src/libcfa/containers/vector (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/containers/vector
raca65621 r67cf18c 31 31 32 32 forall(otype T) 33 void ?{}(heap_allocator(T) &this);33 void ?{}(heap_allocator(T)* this); 34 34 35 35 forall(otype T) 36 void ?{}(heap_allocator(T) &this, heap_allocator(T) rhs);36 void ?{}(heap_allocator(T)* this, heap_allocator(T) rhs); 37 37 38 38 forall(otype T) 39 heap_allocator(T) ?=?(heap_allocator(T) &this, heap_allocator(T) rhs);39 heap_allocator(T) ?=?(heap_allocator(T)* this, heap_allocator(T) rhs); 40 40 41 41 forall(otype T) 42 void ^?{}(heap_allocator(T) &this);42 void ^?{}(heap_allocator(T)* this); 43 43 44 44 forall(otype T) … … 65 65 //Initialization 66 66 forall(otype T, otype allocator_t | allocator_c(T, allocator_t)) 67 void ?{}(vector(T, allocator_t) &this);67 void ?{}(vector(T, allocator_t)* this); 68 68 69 69 forall(otype T, otype allocator_t | allocator_c(T, allocator_t)) 70 void ?{}(vector(T, allocator_t) &this, vector(T, allocator_t) rhs);70 void ?{}(vector(T, allocator_t)* this, vector(T, allocator_t) rhs); 71 71 72 72 forall(otype T, otype allocator_t | allocator_c(T, allocator_t)) 73 vector(T, allocator_t) ?=?(vector(T, allocator_t) &this, vector(T, allocator_t) rhs);73 vector(T, allocator_t) ?=?(vector(T, allocator_t)* this, vector(T, allocator_t) rhs); 74 74 75 75 forall(otype T, otype allocator_t | allocator_c(T, allocator_t)) 76 void ^?{}(vector(T, allocator_t) &this);76 void ^?{}(vector(T, allocator_t)* this); 77 77 78 78 forall(otype T, otype allocator_t = heap_allocator(T) | allocator_c(T, allocator_t))
Note:
See TracChangeset
for help on using the changeset viewer.