aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/local-binary-cache-store.cc
diff options
context:
space:
mode:
authorregnat <rg@regnat.ovh>2020-09-11 11:06:18 +0200
committerregnat <rg@regnat.ovh>2020-09-16 13:53:09 +0200
commit5895184df44e86ae55270390402c8263b0f24ae2 (patch)
tree0866ef276909936e47d67172708563c701ccf47e /src/libstore/local-binary-cache-store.cc
parentd184ad1d276006d4d003046710a56a019034a6a1 (diff)
Correctly call all the parent contructors of the stores
Using virtual inheritance means that only the default constructors of the parent classes will be called, which isn't what we want
Diffstat (limited to 'src/libstore/local-binary-cache-store.cc')
-rw-r--r--src/libstore/local-binary-cache-store.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libstore/local-binary-cache-store.cc b/src/libstore/local-binary-cache-store.cc
index fc3ae94c2..becd74c75 100644
--- a/src/libstore/local-binary-cache-store.cc
+++ b/src/libstore/local-binary-cache-store.cc
@@ -20,7 +20,9 @@ public:
LocalBinaryCacheStore(
const Path & binaryCacheDir,
const Params & params)
- : LocalBinaryCacheStoreConfig(params)
+ : StoreConfig(params)
+ , BinaryCacheStoreConfig(params)
+ , LocalBinaryCacheStoreConfig(params)
, BinaryCacheStore(params)
, binaryCacheDir(binaryCacheDir)
{