about summary refs log tree commit diff stats
path: root/046closure_name.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-04 20:41:36 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-04 23:35:21 -0800
commit5a4810855d34ce74b787d70383a712eef9e053f4 (patch)
treecefe72d37575c64d31bbdee2009f619b4cc4fc6b /046closure_name.cc
parent18c57d32aec20e47ea7827460c0628ed218ef333 (diff)
downloadmu-5a4810855d34ce74b787d70383a712eef9e053f4.tar.gz
2358 - starting to tackle the phase ordering problem
A new externality is starting to make its presence felt.

Until I sort this out it's going to be hard to finish making duplex-list
generic.
Diffstat (limited to '046closure_name.cc')
-rw-r--r--046closure_name.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/046closure_name.cc b/046closure_name.cc
index 6671d00b..d6197fce 100644
--- a/046closure_name.cc
+++ b/046closure_name.cc
@@ -35,8 +35,8 @@ recipe increment-counter [
 :(before "End Globals")
 map<recipe_ordinal, recipe_ordinal> Surrounding_space;
 
-:(after "int main")
-  Transform.push_back(collect_surrounding_spaces);
+:(after "Begin Transforms")
+Transform.push_back(collect_surrounding_spaces);
 
 :(code)
 void collect_surrounding_spaces(const recipe_ordinal r) {