Indent wrapped function names

EditorConfig key: cpp-indent-wrapped-function-names

Indent wrapped function names

cpp-indent-wrapped-function-names

If true, a function name wrapped to the next line after its return type is indented.

Default value:

false

Possible values:

  • true
  • false

Examples

true
int
  foo() { return 0; }
false
int
foo() { return 0; }