I've got the problem that the current VA beta does not like initialization lists spanning lines and being indented for better readability. VA then tries (forcefully) to indent the following lines by one more tab:
Expected:
Class::Class() :
my_member( 0 )
{
}
Class::~Class()
{
}
Actual Result:
Class::Class() :
my_member( 0 )
{
}
Class::~Class()
{
}
This is happening also when I reindent the c-tor body and then add new methods below the c-tor
I reindented the C-Tor body manually:
Class::Class() :
my_member( 0 )
{
}
and then add a d-tor (or any other thing, it will try to indent up to the column where the initialization list is idented):
Class::Class() :
my_member( 0 )
{
}
Class::~Class()
{
}