diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-01-28 08:41:57 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-01-28 08:41:57 +0200 |
commit | ccb417a7c1456427b76914e8a11ca87b4926eeb3 (patch) | |
tree | d68803a1a1a013b1bb50f845459d0145c221eb79 /libbuild2/version | |
parent | c0105aad0074aee0efb3ba41f8132496412f8790 (diff) |
Use scope::var_pool()
Diffstat (limited to 'libbuild2/version')
-rw-r--r-- | libbuild2/version/init.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/version/init.cxx b/libbuild2/version/init.cxx index ea4c71a..f69e416 100644 --- a/libbuild2/version/init.cxx +++ b/libbuild2/version/init.cxx @@ -224,7 +224,7 @@ namespace build2 // Note also that we have "gifted" the config.version variable name to // the config module. // - auto& vp (ctx.var_pool.rw (rs)); + auto& vp (rs.var_pool ()); auto set = [&vp, &rs] (const char* var, auto val) { |