[libcxx-commits] [PATCH] D88131: adds [concepts.arithmetic]

Christopher Di Bella via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Tue Feb 9 17:49:13 PST 2021


cjdb added inline comments.


================
Comment at: libcxx/test/std/concepts/lang/arithmetic.pass.cpp:264
+    requires std::signed_integral<I> && (!std::unsigned_integral<I>)
+                                            [[nodiscard]] constexpr
+    bool CheckSubsumption(I) {
----------------
ldionne wrote:
> Is that the result of clang-format? This seems weirdly aligned, no?
Yeah, I believe there's some new settings in clang-format-13 to handle concepts, //requires-expressions//, and //requires-clauses// properly. For the time being, I've just added some much-hated comments :-)


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D88131



More information about the libcxx-commits mailing list