diff options
author | regnat <rg@regnat.ovh> | 2020-09-09 11:18:12 +0200 |
---|---|---|
committer | regnat <rg@regnat.ovh> | 2020-09-16 13:53:08 +0200 |
commit | fa32560169ffa55b9e0b6d5f04c3792acf0c544a (patch) | |
tree | 61c605aebb1c2385ba4401f55059da1e55a4cd21 /src/libstore/s3-binary-cache-store.cc | |
parent | 7d5bdf8b5679cc7b2b9b4d9caf5af9ca52211336 (diff) |
Fix the registration of stores
Diffstat (limited to 'src/libstore/s3-binary-cache-store.cc')
-rw-r--r-- | src/libstore/s3-binary-cache-store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/s3-binary-cache-store.cc b/src/libstore/s3-binary-cache-store.cc index 1bf4d5955..f426b43a9 100644 --- a/src/libstore/s3-binary-cache-store.cc +++ b/src/libstore/s3-binary-cache-store.cc @@ -431,7 +431,7 @@ struct S3BinaryCacheStoreImpl : public S3BinaryCacheStore }; -[[maybe_unused]] static RegisterStoreImplementation<S3BinaryCacheStoreImpl> regStore(); +static RegisterStoreImplementation<S3BinaryCacheStoreImpl> regStore; } |