indent_access_spec_body
Whether to indent the code after an access specifier by one level.
If true, this option forces 'indent_access_spec=0'.
Possible values are true and false, default false.
Examples
true
Code before:
class Barrel {
int width;
public:
Barrel();
virtual ~Barrel();
int getWidth() const;
};
Code after:
class Barrel {
int width;
public:
Barrel();
virtual ~Barrel();
int getWidth() const;
};
See also
- indent_access_spec: Same as indent_label, but for access specifiers that are followed by a colon.
- indent_columns: The number of columns to indent per level.
- indent_with_tabs: How to use tabs when indenting code.