I think the lambda-indention looks a bit weird when the lambda is a function argument.
(Using v4.0.17)
Indenting this small example in 4coder:
1 2 3 4 | a.b([](){
if(1)
c();
});
|
... would look better like this, right?
1 2 3 4 | a.b([]() {
if (1)
c();
})
|
I have quite a bit of these in the code I have to work with.