fix(3p/nix): Fix incorrectly braced conditionals and loops

Fixes mistakes introduced by clang-tidy in the previous commit.
This commit is contained in:
Vincent Ambo 2020-05-19 18:01:12 +01:00
parent b490742a51
commit 09cbc431cc
16 changed files with 62 additions and 61 deletions

View file

@ -42,9 +42,8 @@ static string parseJSONString(const char*& s) {
throw JSONParseError("invalid escaped character in JSON string");
s++;
} else {
res
res += *s++;
}
+= *s++;
}
s++;
return res;