I'll try to format the do-while block in the following
manner:
...
do {
...
} while (...);
...
But it doesnt work when using the switch (see doc):
-stmt_brace_style-2
I always get a block like
...
do
{
...
} while (...);
...
Best regards,
Sven