diff --git a/nix/guix-register/guix-register.cc b/nix/guix-register/guix-register.cc index f8f0eab4c2..16dae62b3d 100644 --- a/nix/guix-register/guix-register.cc +++ b/nix/guix-register/guix-register.cc @@ -204,8 +204,8 @@ register_validity (LocalStore *store, std::istream &input, cross-device links. Thus, temporarily switch the value of 'settings.nixStore'. */ settings.nixStore = prefix + store_dir; - foreach (ValidPathInfos::const_iterator, i, infos) - store->optimisePath (prefix + i->path); + for (auto&& i: infos) + store->optimisePath (prefix + i.path); settings.nixStore = store_dir; } }