mirror of
https://github.com/NixOS/nix
synced 2025-07-05 20:41:47 +02:00
Slightly change formatting style
For long expressions, one argument or parameter per line is just easier.
This commit is contained in:
parent
bd7a074636
commit
1d6c2316a9
6 changed files with 44 additions and 15 deletions
|
@ -25,7 +25,10 @@ static StringSet getExcludingNoProxyVariables()
|
|||
static const StringSet excludeVariables{"no_proxy", "NO_PROXY"};
|
||||
StringSet variables;
|
||||
std::set_difference(
|
||||
networkProxyVariables.begin(), networkProxyVariables.end(), excludeVariables.begin(), excludeVariables.end(),
|
||||
networkProxyVariables.begin(),
|
||||
networkProxyVariables.end(),
|
||||
excludeVariables.begin(),
|
||||
excludeVariables.end(),
|
||||
std::inserter(variables, variables.begin()));
|
||||
return variables;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue