about summary refs log tree commit diff stats
path: root/011load.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 /011load.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 '011load.cc')
-rw-r--r--011load.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/011load.cc b/011load.cc
index 662089e2..e75bb364 100644
--- a/011load.cc
+++ b/011load.cc
@@ -46,6 +46,7 @@ vector<recipe_number> load(istream& in) {
       raise << "unknown top-level command: " << command << '\n';
     }
   }
+  // End Load Sanity Checks
   return result;
 }