about summary refs log tree commit diff stats
path: root/043space.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-02-25 20:47:42 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-02-25 20:47:42 -0800
commitd0e29245f9d37256093026d5080452db8a694136 (patch)
tree0f6658fa7dc42e7ac30c0641d1bcd562c332f3ec /043space.cc
parentdcc060c7d4ef56b978beb34ddce8d8ffcec94fa6 (diff)
downloadmu-d0e29245f9d37256093026d5080452db8a694136.tar.gz
2707
Diffstat (limited to '043space.cc')
-rw-r--r--043space.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/043space.cc b/043space.cc
index e068e874..c347d0cb 100644
--- a/043space.cc
+++ b/043space.cc
@@ -265,7 +265,6 @@ void check_default_space(const recipe_ordinal r) {
   if (caller.steps.at(0).products.empty()
       || caller.steps.at(0).products.at(0).name != "default-space") {
     raise_error << maybe(caller.name) << " does not seem to start with default-space or local-scope\n" << end();
-//?     cerr << maybe(caller.name) << " does not seem to start with default-space or local-scope\n" << '\n';
   }
 }
 :(after "Load .mu Core")
@@ -280,10 +279,8 @@ bool contains_non_special_name(const recipe_ordinal r) {
   for (map<string, long long int>::iterator p = Name[r].begin(); p != Name[r].end(); ++p) {
     if (p->first.empty()) continue;
     if (p->first.find("stash_") == 0) continue;  // generated by rewrite_stashes_to_text (cross-layer)
-    if (!is_special_name(p->first)) {
-//?       cerr << "  " << get(Recipe, r).name << ": " << p->first << '\n';
+    if (!is_special_name(p->first))
       return true;
-    }
   }
   return false;
 }