diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-02-10 11:52:34 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-02-10 11:52:34 +0200 |
commit | dd25960e27d2f127e05d9f992eb577bc20e395ab (patch) | |
tree | 9a90b6f0a37081e3dbeacdbbf6439d5d5af5e71a /libbuild2/test | |
parent | afe22af6ad346c653ed02109835e88348f4ecf5b (diff) |
Make few global types separately constructible/initializable
Diffstat (limited to 'libbuild2/test')
-rw-r--r-- | libbuild2/test/script/parser.test.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/test/script/parser.test.cxx b/libbuild2/test/script/parser.test.cxx index 47d56ce..eb4a59b 100644 --- a/libbuild2/test/script/parser.test.cxx +++ b/libbuild2/test/script/parser.test.cxx @@ -168,7 +168,7 @@ namespace build2 // scheduler sched (1); global_mutexes mutexes (1); - file_cache fcache; + file_cache fcache (true); context ctx (sched, mutexes, fcache); bool scope (false); |