-
Notifications
You must be signed in to change notification settings - Fork 594
Closed
Labels
Description
Empty config.
Simple case, before formatting:
void test1( int n )
{
switch ( n )
{
case 1:
{
std::cout << "1" << std::endl;
}
break;
}
}
void test2( int n )
{
switch ( n )
{
case 1:
{ std::cout << "1" << std::endl; }
break;
}
}
After formatting:
void test1( int n )
{
switch ( n )
{
case 1:
{
std::cout << "1" << std::endl;
}
break;
}
}
void test2( int n )
{
switch ( n )
{
case 1:
{ std::cout << "1" << std::endl; }
break;
}
}
'break' in test1 is ok.
'break' in test2 has a wrong indentation.
Reactions are currently unavailable