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