diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-02-07 13:57:31 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-02-07 13:57:31 +0100 |
commit | 84a3a5c3cdc786a8848abf5b9096f40991205e72 (patch) | |
tree | 984a69d4ab78ca7d15f94bed99ab650805e5dfe9 /src | |
parent | 379852a152cc2299bfd0a02e0229112ad322319c (diff) | |
parent | d82b78bf51b2d8f626264fa992a907dd1088389a (diff) |
Merge remote-tracking branch 'origin/master' into flakes
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/ssh-store.cc | 4 | ||||
-rw-r--r-- | src/libstore/store-api.hh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/libstore/ssh-store.cc b/src/libstore/ssh-store.cc index af99ad40a..caae6b596 100644 --- a/src/libstore/ssh-store.cc +++ b/src/libstore/ssh-store.cc @@ -16,8 +16,8 @@ public: const Setting<Path> sshKey{(Store*) this, "", "ssh-key", "path to an SSH private key"}; const Setting<bool> compress{(Store*) this, false, "compress", "whether to compress the connection"}; - const Setting<Path> remoteProgram{this, "nix-daemon", "remote-program", "path to the nix-daemon executable on the remote system"}; - const Setting<std::string> remoteStore{this, "", "remote-store", "URI of the store on the remote system"}; + const Setting<Path> remoteProgram{(Store*) this, "nix-daemon", "remote-program", "path to the nix-daemon executable on the remote system"}; + const Setting<std::string> remoteStore{(Store*) this, "", "remote-store", "URI of the store on the remote system"}; SSHStore(const std::string & host, const Params & params) : Store(params) diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh index 902d00216..0aaec20d1 100644 --- a/src/libstore/store-api.hh +++ b/src/libstore/store-api.hh @@ -682,7 +682,7 @@ class LocalFSStore : public virtual Store public: // FIXME: the (Store*) cast works around a bug in gcc that causes - // it to emit the call to the Option constructor. Clang works fine + // it to omit the call to the Setting constructor. Clang works fine // either way. const PathSetting rootDir{(Store*) this, true, "", "root", "directory prefixed to all other paths"}; |