Changeset aca65621 for src/libcfa/containers/vector
- Timestamp:
- Jul 12, 2017, 4:40:02 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 0698aa1
- Parents:
- 469f709
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/containers/vector
r469f709 raca65621 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.