about summary refs log tree commit diff stats
path: root/012transform.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-18 18:40:58 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-18 18:40:58 -0700
commit6152ef13a865eb1795fd5547f4d307a6f5690558 (patch)
tree6fb203d22a8875366a5f836a3279f00d5011a895 /012transform.cc
parent56109c6d03a4442b6dc1e1968710a0ec7f159963 (diff)
downloadmu-6152ef13a865eb1795fd5547f4d307a6f5690558.tar.gz
1399 - better 'unknown type' warnings
Implement warnings for types without definitions without constraining
where type definitions must appear.

We also eliminate the anti-pattern where a change in layer 10 had its
test in layer 11 (commit 1383).
Diffstat (limited to '012transform.cc')
-rw-r--r--012transform.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/012transform.cc b/012transform.cc
index 731156a9..7cd4d698 100644
--- a/012transform.cc
+++ b/012transform.cc
@@ -15,7 +15,7 @@ vector<transform_fn> Transform;
 
 :(code)
 void transform_all() {
-//?   cout << "AAA transform_all\n"; //? 1
+//?   cerr << "AAA transform_all\n"; //? 2
   for (long long int t = 0; t < SIZE(Transform); ++t) {
     for (map<recipe_number, recipe>::iterator p = Recipe.begin(); p != Recipe.end(); ++p) {
       recipe& r = p->second;
>149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206