indent_constr_colon

Whether to indent the stuff after a leading class initializer colon.

Possible values are true or false, default false.

Examples

true

Code before:

Barrel::Barrel() : pos(nullptr),
    visible(false)
{
    width =5;
}

Code after (may appear incorrect because tab/spaces in html):

Barrel::Barrel() : pos(nullptr),
               visible(false)
{
    width =5;
}

Note, this option works only if first initializer appears on the same line as constructor (after colon). Following code will not be changed:

Barrel::Barrel() :
  pos(nullptr),
    visible(false)
{
    width =5;
}

See also