Nick Sabalausky wrote: > So I've changed my style to this: > > if(blah) > { > -> foo( > -> -> bigLongArg1, > -> -> bigLongArg2, > -> -> bigLongArg3 > -> ); > }
That's something I've started doing too. It's not just a matter of alignment either - I think the first argument on the same line as the function name is easy to miss. It all blends in together.