Remove unneeded definition

Template instantiations will cover this case fine.
This commit is contained in:
John Ericson 2020-08-04 21:56:42 +00:00
parent 2f2ae993dc
commit 1bab8a321f

View file

@ -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);