about summary refs log tree commit diff stats
path: root/042name.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-12-13 20:01:42 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-12-13 20:01:42 -0800
commit71974f15e3b5b32542fec00f0985c674f45a2501 (patch)
treef5fe3ec8cd6f9023acd392ebd8d384129d353797 /042name.cc
parentbf458036ced8cbb50c79268f57418149f5e43909 (diff)
downloadmu-71974f15e3b5b32542fec00f0985c674f45a2501.tar.gz
2622
Diffstat (limited to '042name.cc')
-rw-r--r--042name.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/042name.cc b/042name.cc
index bb9fb08c..949f0dde 100644
--- a/042name.cc
+++ b/042name.cc
@@ -23,9 +23,9 @@ Transform.push_back(transform_names);  // idempotent
 
 :(before "End Globals")
 map<recipe_ordinal, map<string, long long int> > Name;
-:(after "Clear Other State For recently_added_recipes")
-for (long long int i = 0; i < SIZE(recently_added_recipes); ++i) {
-  Name.erase(recently_added_recipes.at(i));
+:(after "Clear Other State For Recently_added_recipes")
+for (long long int i = 0; i < SIZE(Recently_added_recipes); ++i) {
+  Name.erase(Recently_added_recipes.at(i));
 }
 
 :(code)