aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/names.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/libexpr/names.cc')
-rw-r--r--src/libexpr/names.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libexpr/names.cc b/src/libexpr/names.cc
index cda5aa195..7bca9b655 100644
--- a/src/libexpr/names.cc
+++ b/src/libexpr/names.cc
@@ -98,8 +98,8 @@ int compareVersions(const string & v1, const string & v2)
DrvNames drvNamesFromArgs(const Strings & opArgs)
{
DrvNames result;
- foreach (Strings::const_iterator, i, opArgs)
- result.push_back(DrvName(*i));
+ for (auto & i : opArgs)
+ result.push_back(DrvName(i));
return result;
}