Merge pull request #3950 from obsidiansystems/tabs-spaces

tabs -> spaces
This commit is contained in:
Eelco Dolstra 2020-08-24 10:20:28 +02:00 committed by GitHub
commit 2530cc6827
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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