On Tue, Dec 18, 2012 at 2:05 PM, Daniel Jasper <[email protected]> wrote:
> We used to format initializers like this (with a sort of hacky 
> implementation):
> Constructor()
>     : Val1(A),
>       Val2(B) {
>
> and now format like this (with a somewhat better solution):
> Constructor()
>     : Val1(A), Val2(B) {
>
> assuming this would not fit on a single line. Also added tests.

Awesome, thanks for including this!

-- Sean Silva
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to