FStefanni added a comment.

Hi,

thank you for the suggestion, but it does **not**, at least with 
`BreakConstructorInitializers: AfterColon` (which is what I use).
If initializers are "small enough" to fit the constructor line, all will finish 
on the same line.

E.g.

  MyClass::MyClass(): a(), b()
  {}

But what I like is:

  MyClass::MyClass(): 
      a(), 
      b()
  {}

Regards.


Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D14484/new/

https://reviews.llvm.org/D14484

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to