diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-17 23:24:52 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-17 23:24:52 -0700 |
commit | 7284d503f67572dab678f68e5635c471a9d53480 (patch) | |
tree | 292b611d694da66c1a881ed11662cf9b0ee64610 /cpp/035call | |
parent | b3cdcdd44f6b8db053e4814351fbf04fefb7d7cf (diff) | |
download | mu-7284d503f67572dab678f68e5635c471a9d53480.tar.gz |
1094 - demarcate sections in layers
We have tangled vs regular comments, but they highlight the same. So we're still at 3 colors for comments. Anything more starts to seem gratuitous.
Diffstat (limited to 'cpp/035call')
-rw-r--r-- | cpp/035call | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/035call b/cpp/035call index 21d07b18..efb4a2a7 100644 --- a/cpp/035call +++ b/cpp/035call @@ -31,7 +31,9 @@ struct routine { routine::routine(recipe_number r) { calls.push(call(r)); } -//: now update routine's helpers + +//:: 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; @@ -56,7 +58,7 @@ default: { continue; // not done with caller; don't increment pc } -//: finally, we need to fix the termination conditions for the run loop +//:: finally, we need to fix the termination conditions for the run loop :(replace{} "inline bool done(routine& rr)") inline bool done(routine& rr) { |