How to prevent Uncrustify code formatter from keeping one space in C++ one-liner between {
and the rest code?
So, it changes this code
const Foo &GetBar() const { return bar; }
to this
const Foo &GetBar() const {return bar; }
I search for return
in default uncrustify config, but found nothing in common with my problem.