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/local-binary-cache-store.cc | |
parent | 7d5bdf8b5679cc7b2b9b4d9caf5af9ca52211336 (diff) |
Fix the registration of stores
Diffstat (limited to 'src/libstore/local-binary-cache-store.cc')
-rw-r--r-- | src/libstore/local-binary-cache-store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/local-binary-cache-store.cc b/src/libstore/local-binary-cache-store.cc index 752838d3f..808a1338f 100644 --- a/src/libstore/local-binary-cache-store.cc +++ b/src/libstore/local-binary-cache-store.cc @@ -96,6 +96,6 @@ std::vector<std::string> LocalBinaryCacheStore::uriPrefixes() return {"file"}; } -[[maybe_unused]] static RegisterStoreImplementation<LocalBinaryCacheStore> regStore(); +static RegisterStoreImplementation<LocalBinaryCacheStore> regStore; } |