diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-03-16 20:41:12 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-03-16 20:41:12 -0700 |
commit | 64cf0a5950929e678ef9c0a6837ed59a1ca1661d (patch) | |
tree | ab22a4b7877d9f023aa85e9b98c2a421fda977ce | |
parent | 3c435756bcd997dac981ca78c49c5100eb2211b7 (diff) | |
download | mu-64cf0a5950929e678ef9c0a6837ed59a1ca1661d.tar.gz |
933
-rw-r--r-- | cpp/020call | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/020call b/cpp/020call index 8efee27c..22548b8d 100644 --- a/cpp/020call +++ b/cpp/020call @@ -52,6 +52,8 @@ default: { continue; // not done with caller; don't increment pc } +//: finally, we need to fix the termination conditions for the run loop + :(replace{} "inline bool done(routine& rr)") inline bool done(routine& rr) { return rr.calls.empty(); |