Код: Выделить всё
// Provided this exceeds the column limit ...
const void* address() const noexcept { return &_data[0]; }
// ... I want it to be formatted like this ...
const void* address() const noexcept
{ return &_data[0]; }
// ... but all I can get is either this ...
const void* address() const noexcept
{
return &_data[0];
}
// ... or this!
const void* address() const noexcept {
return &_data[0];
}
Подробнее здесь: https://stackoverflow.com/questions/781 ... ction-body