[libcxx-commits] [PATCH] D106840: [libcxx][ranges] Add `std::ranges::single_view`.

Christopher Di Bella via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Wed Jul 28 16:07:02 PDT 2021


cjdb accepted this revision.
cjdb added a comment.
This revision is now accepted and ready to land.

LGTM pending last bit of feedback (just test it locally, no need to wait for CI).



================
Comment at: libcxx/test/std/ranges/range.factories/range.single.view/range_concept_conformance.compile.pass.cpp:25
+
+static_assert(std::ranges::range<std::ranges::single_view<Empty>>);
+static_assert(std::ranges::range<const std::ranges::single_view<Empty>>);
----------------
This should be `input_range`.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D106840



More information about the libcxx-commits mailing list