diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2020-08-04 21:56:42 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2020-08-04 21:56:42 +0000 |
commit | 1bab8a321f246c1c202268851b0e706ff5030d2e (patch) | |
tree | 1977d16e7adbc87bc4d12b75f0ae3ad24ed97d9d /src | |
parent | 2f2ae993dc6d35e9c0e66e893e5d615116d42917 (diff) |
Remove unneeded definition
Template instantiations will cover this case fine.
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/remote-store.cc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc index de50b3e2e..5de8f95a7 100644 --- a/src/libstore/remote-store.cc +++ b/src/libstore/remote-store.cc @@ -23,14 +23,6 @@ namespace nix { -void write(const Store & store, Sink & out, const StorePathSet & paths) -{ - out << paths.size(); - for (auto & i : paths) - out << store.printStorePath(i); -} - - std::string read(const Store & store, Source & from, Proxy<std::string> _) { return readString(from); |