[libcxx-commits] [PATCH] D117512: [libc++][ranges] Add ranges::in_in_out_result

Casey Carter via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Mon Jan 17 14:09:12 PST 2022


CaseyCarter added inline comments.


================
Comment at: libcxx/include/__algorithm/in_in_out_result.h:35
+  template <class _II1, class _II2, class _OO1>
+    requires convertible_to<_I1, _II1> && convertible_to<_I2, _II2> _LIBCPP_HIDE_FROM_ABI constexpr
+  operator in_in_out_result<_II1, _II2, _OO1>() && {
----------------
The third `convertible_to` constraint is missing here, which indicates a lack of test coverage.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D117512



More information about the libcxx-commits mailing list