about summary refs log tree commit diff stats
path: root/048check_type_by_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 /048check_type_by_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 '048check_type_by_name.cc')
-rw-r--r--048check_type_by_name.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/048check_type_by_name.cc b/048check_type_by_name.cc
index 438e45c3..fb193d78 100644
--- a/048check_type_by_name.cc
+++ b/048check_type_by_name.cc
@@ -14,8 +14,8 @@ recipe main [
 ]
 +error: main: x used with multiple types
 
-:(after "int main")
-  Transform.push_back(check_types_by_name);
+:(after "Begin Transforms")
+Transform.push_back(check_types_by_name);
 
 :(code)
 void check_types_by_name(const recipe_ordinal r) {