about summary refs log tree commit diff stats
path: root/021arithmetic.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-11 22:58:04 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-11 22:58:04 -0700
commitc60e18850cc3207fb6b52f72c5400cc88da923cc (patch)
tree9bf5b3653637df699046c0a4ce243c55edc3f370 /021arithmetic.cc
parent4c879fa1bcd407b0212a13d18851365015a4e406 (diff)
downloadmu-c60e18850cc3207fb6b52f72c5400cc88da923cc.tar.gz
1764 - editor now updates all sandboxes
Finally, albeit too late for my demo.
Diffstat (limited to '021arithmetic.cc')
-rw-r--r--021arithmetic.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/021arithmetic.cc b/021arithmetic.cc
index 01202f33..0701e82a 100644
--- a/021arithmetic.cc
+++ b/021arithmetic.cc
@@ -7,6 +7,7 @@ Recipe_ordinal["add"] = ADD;
 :(before "End Primitive Recipe Implementations")
 case ADD: {
   double result = 0;
+//?   if (!tb_is_active()) cerr << ingredients.at(1).at(0) << '\n'; //? 1
   for (long long int i = 0; i < SIZE(ingredients); ++i) {
     assert(scalar(ingredients.at(i)));
     result += ingredients.at(i).at(0);