MyDeveloperDay marked an inline comment as done. MyDeveloperDay added inline comments.
================ Comment at: clang/lib/Format/TokenAnnotator.cpp:1924 return TT_BinaryOperator; } ---------------- This change it to resolve the missing gap between `&&` and `Concept2`, clang-format incorrectly labels the && as TT_PointerOrReference ``` template <class I> void f(I i) requires Concept1<I> &&Concept2<i> { // ... } ``` vs ``` template <class I> void f(I i) requires Concept1<I> && Concept2<i> { // ... } ``` 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