MyDeveloperDay added a comment.

https://reviews.llvm.org/D79773#2131680 has something to do with your 
.clang-format file, the base LLVM style seems fine.

  template <typename T>
  concept bool EqualityComparable = requires(T a, T b) {
      { a == b } -> bool;
  };

vs

  template <typename T>
  concept bool EqualityComparable = requires(T a, T b)
  {
      {
          a == b
          } -> bool;
  };

From what I can tell its because of the "BreakBeforeBraces: Allman or GNU" 
styles.


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

https://reviews.llvm.org/D79773



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

Reply via email to