koalo added a comment.

The difference is that BraceWrapping.AfterEnum also wraps before the brace.

With AfterEnum we have the following

  true:
  enum X : int
  {
    B
  };
  
  false:
  enum X : int { B };

But what I want is this:

  enum X : int {
    B
  };


Repository:
  rC Clang

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

https://reviews.llvm.org/D54628



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

Reply via email to