[libcxx-commits] [PATCH] D101547: [libc++] Implement ranges::view
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Apr 29 10:05:42 PDT 2021
ldionne added a subscriber: cjdb.
ldionne added inline comments.
================
Comment at: libcxx/test/std/ranges/range.view/view.compile.pass.cpp:27-30
+ friend int* begin(NotMoveable&);
+ friend int* begin(NotMoveable const&);
+ friend int* end(NotMoveable&);
+ friend int* end(NotMoveable const&);
----------------
@cjdb I found it very surprising that I had to provide both those overloads for the `range` concept to be satisfied. Is that really intended, or is that a bug in the patch that adds `range` (which is under review)?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D101547/new/
https://reviews.llvm.org/D101547
More information about the libcxx-commits
mailing list