diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-03-16 20:26:59 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-03-16 20:26:59 -0700 |
commit | 3c435756bcd997dac981ca78c49c5100eb2211b7 (patch) | |
tree | 05524418c430239992558e5b5a82ddbdf133c60d /cpp/020call | |
parent | b589f25a005ad00f6fd888520f9eaaddbd707617 (diff) | |
download | mu-3c435756bcd997dac981ca78c49c5100eb2211b7.tar.gz |
932 - clean up comments in the tangled c++
Diffstat (limited to 'cpp/020call')
-rw-r--r-- | cpp/020call | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/020call b/cpp/020call index f926a100..8efee27c 100644 --- a/cpp/020call +++ b/cpp/020call @@ -1,4 +1,4 @@ -// So far the recipes we define can't run each other. Let's change that. +//: So far the recipes we define can't run each other. Let's change that. :(scenario "calling_recipe") recipe main [ f @@ -27,6 +27,7 @@ struct routine { calls.push(call(r)); } }; +//: now update routine's helpers :(replace{} "inline size_t& running_at(routine& rr)") inline size_t& running_at(routine& rr) { return rr.calls.top().pc; |