Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/memory.cfa

    r1341ce1 r85871478  
    155155
    156156forall(T &)
    157 T * release(unique_ptr(T) & this) {
    158         T * data = this.data;
    159         this.data = 0p;
    160         return data;
    161 }
    162 
    163 forall(T &)
    164157int ?==?(unique_ptr(T) const & this, unique_ptr(T) const & that) {
    165158        return this.data == that.data;
Note: See TracChangeset for help on using the changeset viewer.