style(3p/nix): Add braces around single-line for-loops
These were not caught by the previous clang-tidy invocation, but were
instead sorted out using amber[0] as such:
ambr --regex 'for (\(.+\))\s([a-z].*;)' 'for $1 { $2 }'
[0]: https://github.com/dalance/amber
This commit is contained in:
parent
867055133d
commit
1841d93ccb
45 changed files with 426 additions and 142 deletions
8
third_party/nix/src/libexpr/json-to-value.cc
vendored
8
third_party/nix/src/libexpr/json-to-value.cc
vendored
|
|
@ -82,7 +82,9 @@ static void parseJSON(EvalState& state, const char*& s, Value& v) {
|
|||
}
|
||||
s++;
|
||||
state.mkList(v, values.size());
|
||||
for (size_t n = 0; n < values.size(); ++n) v.listElems()[n] = values[n];
|
||||
for (size_t n = 0; n < values.size(); ++n) {
|
||||
v.listElems()[n] = values[n];
|
||||
}
|
||||
}
|
||||
|
||||
else if (*s == '{') {
|
||||
|
|
@ -111,7 +113,9 @@ static void parseJSON(EvalState& state, const char*& s, Value& v) {
|
|||
s++;
|
||||
}
|
||||
state.mkAttrs(v, attrs.size());
|
||||
for (auto& i : attrs) v.attrs->push_back(Attr(i.first, i.second));
|
||||
for (auto& i : attrs) {
|
||||
v.attrs->push_back(Attr(i.first, i.second));
|
||||
}
|
||||
v.attrs->sort();
|
||||
s++;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue