Improve clang-format
Changes:
- maximum line length 132
- If a line with a function call is longer than maximum line length, split arguments on multiple lines instead of all on the next line. So what we should get now:
instead of
f(a, b, c);(assumingf( a, b, c);a, b, cis very long)
Edited by Robert Schmidt