tabs -> spaces

Sorry I let the tab sneak in there in the first place.
This commit is contained in:
John Ericson 2020-08-21 19:19:14 +00:00
parent 4d77513d97
commit 422affe102

View file

@ -74,7 +74,7 @@ void write(const Store & store, Sink & out, const StorePath & storePath)
template<>
std::optional<StorePath> read(const Store & store, Source & from, Phantom<std::optional<StorePath>> _)
{
auto s = readString(from);
auto s = readString(from);
return s == "" ? std::optional<StorePath> {} : store.parseStorePath(s);
}