Linkage specification indentation

EditorConfig key: cpp-linkage-specification-indentation

Linkage specification indentation

cpp-linkage-specification-indentation

Indentation of members inside extern "C"/"C++" blocks.

Default value:

unset

Possible values:

  • unset
  • none
  • inner
  • all

Examples

unset
none
extern "C" {
void f();
}
inner
all
extern "C" {
  void f();
}