diff options
author | regnat <rg@regnat.ovh> | 2020-09-11 11:12:25 +0200 |
---|---|---|
committer | regnat <rg@regnat.ovh> | 2020-09-16 13:53:09 +0200 |
commit | 1129913c4e175f4890a7029d22a301676f4cc3ca (patch) | |
tree | 1d687c8d442eb68b2262a430f42821653eac6c3f /src | |
parent | 7f103dcddd4cf3c0748b7a379a117f3262c4c5f7 (diff) |
fixup! Correctly call all the parent contructors of the stores
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/store-api.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh index bb7d8036b..6f7893e41 100644 --- a/src/libstore/store-api.hh +++ b/src/libstore/store-api.hh @@ -148,6 +148,8 @@ struct BuildResult struct StoreConfig : public Config { using Config::Config; + StoreConfig() = delete; + const PathSetting storeDir_{this, false, settings.nixStore, "store", "path to the Nix store"}; |