about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--042name.cc2
-rw-r--r--048check_type_by_name.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/042name.cc b/042name.cc
index b66de8a2..b25ca533 100644
--- a/042name.cc
+++ b/042name.cc
@@ -18,7 +18,7 @@ recipe main [
 +error: main: use before set: y
 # todo: detect conditional defines
 
-:(after "Begin Transforms")
+:(after "Transform.push_back(check_or_set_invalid_types")  // there'll be other transforms relating to types; they all need to happen first
 Transform.push_back(transform_names);  // idempotent
 
 :(before "End Globals")
diff --git a/048check_type_by_name.cc b/048check_type_by_name.cc
index e9b65b8c..fff48395 100644
--- a/048check_type_by_name.cc
+++ b/048check_type_by_name.cc
@@ -14,7 +14,7 @@ recipe main [
 ]
 +error: main: x used with multiple types
 
-:(before "Transform.push_back(transform_names)")
+:(after "Transform.push_back(check_or_set_invalid_types)")
 Transform.push_back(check_types_by_name);  // idempotent
 
 :(code)