diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-03-18 08:25:19 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-03-18 08:25:19 +0200 |
commit | 7d0c4c5ab6760e4487230f9eda87c352609be553 (patch) | |
tree | cec71d00d5186aa6aa03244b143858d5bb2f54de /libbuild2/config/utility.cxx | |
parent | ee36f1d58484479a2fa3547fad1eb1cc34c51c3e (diff) |
Pattern-type config.** variables with global visibility by default
Diffstat (limited to 'libbuild2/config/utility.cxx')
-rw-r--r-- | libbuild2/config/utility.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbuild2/config/utility.cxx b/libbuild2/config/utility.cxx index 7415085..cf0f73b 100644 --- a/libbuild2/config/utility.cxx +++ b/libbuild2/config/utility.cxx @@ -84,7 +84,7 @@ namespace build2 bool unconfigured (scope& rs, const string& n) { - // Pattern-typed in boot() as bool. + // Pattern-typed as bool. // const variable& var ( rs.var_pool ().insert ("config." + n + ".configured")); @@ -98,7 +98,7 @@ namespace build2 bool unconfigured (scope& rs, const string& n, bool v) { - // Pattern-typed in boot() as bool. + // Pattern-typed as bool. // const variable& var ( rs.var_pool ().insert ("config." + n + ".configured")); |