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