[libcxx-commits] [PATCH] D102639: [libcxx][ranges] Add `indirectly_­movable` and `indirectly_movable_storable`.

Zoe Carver via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Mon Jun 14 07:45:51 PDT 2021


zoecarver added inline comments.


================
Comment at: libcxx/include/__iterator/concepts.h:168
+template<class _In, class _Out>
+concept indirectly_movable =
+  indirectly_readable<_In> &&
----------------
ldionne wrote:
> Do we want to move this to `indirect_concepts.h`? Or should we instead get rid of `indirect_concepts.h` and move those here instead (as a separate NFC patch)?
> 
> No strong preference.
The latter option was selected. Thanks for doing this. 


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D102639



More information about the libcxx-commits mailing list