MyDeveloperDay added a comment.

So it doesn't overcome the trailing "," issue. (which is sometimes used to put 
enums on multiple lines)  - (NOTE: maybe it shouldn't)

  ---
  Language: Cpp
  BasedOnStyle: LLVM
  AllowEnumsOnASingleLine: true



  enum
  {
    B,
    C,
    D,
  } A, B;

vs

  enum { B, C, D } A, B;


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

https://reviews.llvm.org/D78982



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

Reply via email to