diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-10-11 06:29:16 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-10-11 06:29:16 +0200 |
commit | d66e21ffa3ac9520fb15dd3859339b178d6e6540 (patch) | |
tree | 5b522a853294e46a4250d103a01e50d49400319b /libbuild2/file.cxx | |
parent | 19af3f6b0873a92582e4787a87a6f14df53ff6ae (diff) |
Factor variable patterns out of variable_pool into separate variable_patterns
We have patterns only for the public variables pool.
Diffstat (limited to 'libbuild2/file.cxx')
-rw-r--r-- | libbuild2/file.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/file.cxx b/libbuild2/file.cxx index a2fe906..a3962d7 100644 --- a/libbuild2/file.cxx +++ b/libbuild2/file.cxx @@ -611,7 +611,7 @@ namespace build2 a ? alt_export_file : std_export_file, a ? alt_src_root_file : std_src_root_file, a ? alt_out_root_file : std_out_root_file, - {&ctx, &ctx.var_pool.rw (root)}, /* var_pool */ + {&ctx, &ctx.var_pool.rw (root), nullptr}, /* var_pool */ {}, /* meta_operations */ {}, /* operations */ {}, /* modules */ |