Changeset bbdb0c6 for tests/coroutine/runningTotal.cfa
- Timestamp:
- Mar 18, 2020, 3:41:01 PM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 778452d, d658183
- Parents:
- c4fd4ef (diff), 45f4147 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
tests/coroutine/runningTotal.cfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tests/coroutine/runningTotal.cfa
rc4fd4ef rbbdb0c6 25 25 void update( RunTotal & rntl, int input ) with( rntl ) { // helper 26 26 total += input; // remember between activations 27 suspend (); // inactivate on stack27 suspend; // inactivate on stack 28 28 } 29 29
Note:
See TracChangeset
for help on using the changeset viewer.