Код: Выделить всё
void foo(
int a,
// ...
int b
) {
// ...
}
Код: Выделить всё
void foo(int a, int b)
{
// ...
}
Подробнее здесь: https://stackoverflow.com/questions/796 ... singleline
Код: Выделить всё
void foo(
int a,
// ...
int b
) {
// ...
}
Код: Выделить всё
void foo(int a, int b)
{
// ...
}