Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/containers/vector

    raca65621 r67cf18c  
    3131
    3232forall(otype T)
    33 void ?{}(heap_allocator(T)& this);
     33void ?{}(heap_allocator(T)* this);
    3434
    3535forall(otype T)
    36 void ?{}(heap_allocator(T)& this, heap_allocator(T) rhs);
     36void ?{}(heap_allocator(T)* this, heap_allocator(T) rhs);
    3737
    3838forall(otype T)
    39 heap_allocator(T) ?=?(heap_allocator(T)& this, heap_allocator(T) rhs);
     39heap_allocator(T) ?=?(heap_allocator(T)* this, heap_allocator(T) rhs);
    4040
    4141forall(otype T)
    42 void ^?{}(heap_allocator(T)& this);
     42void ^?{}(heap_allocator(T)* this);
    4343
    4444forall(otype T)
     
    6565//Initialization
    6666forall(otype T, otype allocator_t | allocator_c(T, allocator_t))
    67 void ?{}(vector(T, allocator_t)& this);
     67void ?{}(vector(T, allocator_t)* this);
    6868
    6969forall(otype T, otype allocator_t | allocator_c(T, allocator_t))
    70 void ?{}(vector(T, allocator_t)& this, vector(T, allocator_t) rhs);
     70void ?{}(vector(T, allocator_t)* this, vector(T, allocator_t) rhs);
    7171
    7272forall(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);
     73vector(T, allocator_t) ?=?(vector(T, allocator_t)* this, vector(T, allocator_t) rhs);
    7474
    7575forall(otype T, otype allocator_t | allocator_c(T, allocator_t))
    76 void ^?{}(vector(T, allocator_t)& this);
     76void ^?{}(vector(T, allocator_t)* this);
    7777
    7878forall(otype T, otype allocator_t = heap_allocator(T) | allocator_c(T, allocator_t))
Note: See TracChangeset for help on using the changeset viewer.