aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/scope.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2022-10-10 07:20:49 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2022-10-10 07:20:49 +0200
commit9f95a23eae04680559a9cb943fdfaa00f52cd66e (patch)
treece65f5257e129a30781f8221982257de3b343903 /libbuild2/scope.hxx
parent66e7100be28e6758b65592120f47e1965301c12d (diff)
Use term shared instead of global for scope, var pool, etc
Diffstat (limited to 'libbuild2/scope.hxx')
-rw-r--r--libbuild2/scope.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbuild2/scope.hxx b/libbuild2/scope.hxx
index 36bbc81..2105512 100644
--- a/libbuild2/scope.hxx
+++ b/libbuild2/scope.hxx
@@ -606,7 +606,7 @@ namespace build2
friend LIBBUILD2_SYMEXPORT scope& create_bootstrap_inner (scope&,
const dir_path&);
- scope (context&, bool global);
+ scope (context&, bool shared);
~scope ();
// Return true if this root scope can be amalgamated.
@@ -698,7 +698,7 @@ namespace build2
{
public:
temp_scope (scope& p)
- : scope (p.ctx, false /* global */)
+ : scope (p.ctx, false /* shared */)
{
out_path_ = p.out_path_;
src_path_ = p.src_path_;