[libcxx-commits] [PATCH] D102657: [libcxx][ranges] Update `{front_, back_, }insert_iterator` for C++20.
Christopher Di Bella via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Mon May 17 16:35:39 PDT 2021
cjdb added a comment.
This patch appears to conflict with D101729 <https://reviews.llvm.org/D101729>.
================
Comment at: libcxx/include/iterator:770-776
+#if _LIBCPP_STD_VER <= 17
: public iterator<output_iterator_tag,
void,
void,
void,
void>
+#endif // _LIBCPP_STD_VER <= 17
----------------
Quuxplusone wrote:
> https://quuxplusone.github.io/blog/2021/05/07/std-iterator-as-a-base-class/
It's an ABI break that I'm okay with (since I'm okay with //all// ABI breaks), but we should probably discuss this on the mailing list.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D102657/new/
https://reviews.llvm.org/D102657
More information about the libcxx-commits
mailing list