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
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits