diff options
Diffstat (limited to 'third_party/nix/src/libexpr/value-to-xml.cc')
-rw-r--r-- | third_party/nix/src/libexpr/value-to-xml.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/third_party/nix/src/libexpr/value-to-xml.cc b/third_party/nix/src/libexpr/value-to-xml.cc index 0e955c4ce267..a03924aa6354 100644 --- a/third_party/nix/src/libexpr/value-to-xml.cc +++ b/third_party/nix/src/libexpr/value-to-xml.cc @@ -29,7 +29,9 @@ static void showAttrs(EvalState& state, bool strict, bool location, PathSet& drvsSeen) { StringSet names; - for (auto& i : attrs) names.insert(i.name); + for (auto& i : attrs) { + names.insert(i.name); + } for (auto& i : names) { Attr& a(*attrs.find(state.symbols.create(i))); |