Ignore:
Timestamp:
Jul 18, 2017, 4:35:52 PM (7 years ago)
Author:
Rob Schluntz <rschlunt@…>
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:
f19339e
Parents:
795d450
Message:

Convert more library files to use references

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/containers/result

    r795d450 r242a902  
    3535
    3636forall(otype T, otype E)
    37 void ?{}(result(T, E) * this);
     37void ?{}(result(T, E) & this);
    3838
    3939forall(otype T, otype E)
    40 void ?{}(result(T, E) * this, one_t, T value);
     40void ?{}(result(T, E) & this, one_t, T value);
    4141
    4242forall(otype T, otype E)
    43 void ?{}(result(T, E) * this, zero_t, E error);
     43void ?{}(result(T, E) & this, zero_t, E error);
    4444
    4545forall(otype T, otype E)
    46 void ?{}(result(T, E) * this, result(T, E) other);
     46void ?{}(result(T, E) & this, result(T, E) other);
    4747
    4848forall(otype T, otype E)
    49 void ^?{}(result(T, E) * this);
     49void ^?{}(result(T, E) & this);
    5050
    5151forall(otype T, otype E)
    52 result(T, E) ?=?(result(T, E) * this, result(T, E) other);
     52result(T, E) ?=?(result(T, E) & this, result(T, E) other);
    5353
    5454forall(otype T, otype E)
Note: See TracChangeset for help on using the changeset viewer.