about summary refs log tree commit diff stats
path: root/034call.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-25 17:21:48 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-25 17:22:35 -0700
commit6e21584e92e7ec3748e9ca75911d4a13eac594a5 (patch)
tree1b3d1a831f46b3d0702866f7867484ac7197cb99 /034call.cc
parente46306432ddb75a89f69d92ccc175a23f0b72072 (diff)
downloadmu-6e21584e92e7ec3748e9ca75911d4a13eac594a5.tar.gz
1849
Diffstat (limited to '034call.cc')
-rw-r--r--034call.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/034call.cc b/034call.cc
index 16b6ca41..0a8a940b 100644
--- a/034call.cc
+++ b/034call.cc
@@ -109,7 +109,7 @@ inline const vector<instruction>& routine::steps() const {
 while (current_step_index() >= SIZE(Current_routine->steps())) {
   // Falling Through End Of Recipe
   --Callstack_depth;
-//?   cerr << "reply " << Current_routine->calls.size() << '\n'; //? 2
+//?   cerr << "reply " << SIZE(Current_routine->calls) << '\n'; //? 2
   Current_routine->calls.pop_front();
   if (Current_routine->calls.empty()) return;
   // Complete Call Fallthrough
>155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198