aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/ssh-store.cc
diff options
context:
space:
mode:
authorregnat <rg@regnat.ovh>2020-09-09 11:18:12 +0200
committerregnat <rg@regnat.ovh>2020-09-16 13:53:08 +0200
commitfa32560169ffa55b9e0b6d5f04c3792acf0c544a (patch)
tree61c605aebb1c2385ba4401f55059da1e55a4cd21 /src/libstore/ssh-store.cc
parent7d5bdf8b5679cc7b2b9b4d9caf5af9ca52211336 (diff)
Fix the registration of stores
Diffstat (limited to 'src/libstore/ssh-store.cc')
-rw-r--r--src/libstore/ssh-store.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/ssh-store.cc b/src/libstore/ssh-store.cc
index 02208ee82..8177a95b0 100644
--- a/src/libstore/ssh-store.cc
+++ b/src/libstore/ssh-store.cc
@@ -76,6 +76,6 @@ ref<RemoteStore::Connection> SSHStore::openConnection()
return conn;
}
-[[maybe_unused]] static RegisterStoreImplementation<SSHStore> regStore();
+static RegisterStoreImplementation<SSHStore> regStore;
}