diff options
Diffstat (limited to 'src/libstore/remote-store.cc')
-rw-r--r-- | src/libstore/remote-store.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc index d892e3e62bfa..f54281e0d196 100644 --- a/src/libstore/remote-store.cc +++ b/src/libstore/remote-store.cc @@ -29,8 +29,7 @@ Path readStorePath(Source & from) PathSet readStorePaths(Source & from) { PathSet paths = readStringSet(from); - for (PathSet::iterator i = paths.begin(); i != paths.end(); ++i) - assertStorePath(*i); + foreach (PathSet::iterator, i, paths) assertStorePath(*i); return paths; } |