about summary refs log tree commit diff stats
path: root/cpp/013run
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/013run
parente2240eb4e89721928fef4e694524e350fb0140cb (diff)
downloadmu-f1a3be1c542120b01fd8273aabf8a674530df981.tar.gz
988 - those replace{} directives were a bad idea
Diffstat (limited to 'cpp/013run')
-rw-r--r--cpp/013run2
1 files changed, 0 insertions, 2 deletions
diff --git a/cpp/013run b/cpp/013run
index e811d96d..180c862e 100644
--- a/cpp/013run
+++ b/cpp/013run
@@ -115,7 +115,6 @@ for (size_t i = 0; i < recipes_added_by_test.size(); ++i) {
 recipes_added_by_test.clear();
 
 :(code)
-//: beware: overridden in later layers
 vector<int> read_memory(reagent x) {
 //?   cout << "read_memory: " << x.to_string() << '\n'; //? 1
   vector<int> result;
@@ -133,7 +132,6 @@ vector<int> read_memory(reagent x) {
   return result;
 }
 
-//: beware: overridden in later layers
 void write_memory(reagent x, vector<int> data) {
   if (is_dummy(x)) return;
   int base = x.value;