indent_class_colon
Whether to indent the stuff after a leading base class colon.
Possible values are true or false, default false.
It seems it only affects class declaration and nothing more.
Examples
true
Code before:
class Barrel : Wooden,
Round {
public:
Barrel();
virtual ~Barrel();
int getWidth() const;
protected:
int width;
};
Code after:
class Barrel : Wooden,
Round {
public:
Barrel();
virtual ~Barrel();
int getWidth() const;
protected:
int width;
};
Note here the word "Round" is aligned.
See also
- indent_class: Whether the '
class
' body is indented. - indent_constr_colon: Whether to indent the stuff after a leading class initializer colon.