From 9f95a23eae04680559a9cb943fdfaa00f52cd66e Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 10 Oct 2022 07:20:49 +0200 Subject: Use term shared instead of global for scope, var pool, etc --- libbuild2/scope.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libbuild2/scope.hxx') 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_; -- cgit v1.1