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:
f(a, b, c);
f( a, b, c);
a, b, c
is very long)
Edited by Robert Schmidt