about summary refs log tree commit diff stats
path: root/cpp/090debug
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-03-27 18:15:08 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-03-27 18:15:08 -0700
commitf1a3be1c542120b01fd8273aabf8a674530df981 (patch)
tree777857904f6359259bec31a0ebbb117267d86e7d /cpp/090debug
parente2240eb4e89721928fef4e694524e350fb0140cb (diff)
downloadmu-f1a3be1c542120b01fd8273aabf8a674530df981.tar.gz
988 - those replace{} directives were a bad idea
Diffstat (limited to 'cpp/090debug')
-rw-r--r--cpp/090debug1
1 files changed, 0 insertions, 1 deletions
diff --git a/cpp/090debug b/cpp/090debug
index ca88b86c..70d518ed 100644
--- a/cpp/090debug
+++ b/cpp/090debug
@@ -5,7 +5,6 @@ const int _PRINT = 99;
 Recipe_number["$print"] = _PRINT;
 assert(Next_recipe_number < _PRINT);
 :(before "End Primitive Recipe Implementations")
-//: beware: overridden in later layers
 case _PRINT: {
   vector<int> result(read_memory(instructions[pc].ingredients[0]));
   cout << result[0] << '\n';