indent_class
Whether the 'class
' body is indented.
Possible values are true or false, default false.
By default class members are not indented.
Examples
true
Code before:
class Barrel {
public:
Barrel();
virtual ~Barrel();
int getWidth() const;
protected:
int width;
};
Code after:
class Barrel {
public:
Barrel();
virtual ~Barrel();
int getWidth() const;
protected:
int width;
};
See also
- indent_columns - The number of columns to indent per level.
- indent_with_tabs - How to use tabs when indenting code.