diff options
Diffstat (limited to 'src/libexpr/attr-path.cc')
-rw-r--r-- | src/libexpr/attr-path.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libexpr/attr-path.cc b/src/libexpr/attr-path.cc index 45794a62d5dc..2b72fea7eb8e 100644 --- a/src/libexpr/attr-path.cc +++ b/src/libexpr/attr-path.cc @@ -18,7 +18,7 @@ void findAlongAttrPath(EvalState & state, const string & attrPath, string curPath; state.mkThunk_(v, e); - + foreach (Strings::iterator, i, tokens) { if (!curPath.empty()) curPath += "."; @@ -65,9 +65,9 @@ void findAlongAttrPath(EvalState & state, const string & attrPath, v = *v.list.elems[attrIndex]; } - + } } - + } |