diff options
author | olpc user <olpc@xo-5d-f7-86.localdomain> | 2019-12-08 07:09:13 -0800 |
---|---|---|
committer | olpc user <olpc@xo-5d-f7-86.localdomain> | 2019-12-08 07:09:13 -0800 |
commit | b88421a06828653ac551ded68e6c163dff41ec37 (patch) | |
tree | 3570b0e74e3c9f045f1856b71b8ce478c2531d97 /starts | |
parent | 65c656eb18216d54d753df2a62eb6d2f5eaa0edc (diff) | |
download | standingwithresilience-b88421a06828653ac551ded68e6c163dff41ec37.tar.gz standingwithresilience-b88421a06828653ac551ded68e6c163dff41ec37.zip |
remove ref casting, not presently needed
Diffstat (limited to 'starts')
-rw-r--r-- | starts/meaning-vm/habit-starts/rhythm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/starts/meaning-vm/habit-starts/rhythm.cpp b/starts/meaning-vm/habit-starts/rhythm.cpp index 56172e8..d5b2161 100644 --- a/starts/meaning-vm/habit-starts/rhythm.cpp +++ b/starts/meaning-vm/habit-starts/rhythm.cpp @@ -47,10 +47,10 @@ int main() }); ahabit(keep-doing-habit, { - ref(start-habit)(ctx); + (start-habit)(ctx); while (true) { - ref(next-habit)(ctx); + (next-habit)(ctx); } }); |