[libcxx-commits] [PATCH] D116808: fix __simple_view concept in std::ranges

Michael Schellenberger Costa via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Fri Jan 7 07:30:49 PST 2022


miscco added inline comments.


================
Comment at: libcxx/include/__ranges/concepts.h:85
+  concept __simple_view = view<_Range> && range<const _Range> &&
+      same_as<iterator_t<_Range>, iterator_t<const _Range>> && same_as<sentinel_t<_Range>, sentinel_t<const _Range>>;
 
----------------
If you want to you can also give clang format a nudge by adding `//` where you want a line break

That said I do not know whether this is usually accepted here


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D116808



More information about the libcxx-commits mailing list