Код: Выделить всё
if (true) {
// not empty
}
void func() {
// no empty
}
Код: Выделить всё
if (true) // empty
{}
void func() // empty
{}
Подробнее здесь: https://stackoverflow.com/questions/786 ... or-while-e
Код: Выделить всё
if (true) {
// not empty
}
void func() {
// no empty
}
Код: Выделить всё
if (true) // empty
{}
void func() // empty
{}