Skip to content

Improve clang-format

Robert Schmidt requested to merge clang-format-improvements into develop

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

Merge request reports