about summary refs log tree commit diff stats
path: root/043space.cc
diff options
context:
space:
mode:
Diffstat (limited to '043space.cc')
-rw-r--r--043space.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/043space.cc b/043space.cc
index f8e6881b..145fd816 100644
--- a/043space.cc
+++ b/043space.cc
@@ -279,7 +279,7 @@ Warn_on_missing_default_space = true;
 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
+    if (p->first.find("stash_") == 0) continue;  // generated by rewrite_stashes_to_text (cross-layer)
     if (!is_special_name(p->first)) {
 //?       cerr << "  " << Recipe[r].name << ": " << p->first << '\n';
       return true;