[libcxx-commits] [libcxx] [libc++] Implement P0429R9 `std::flat_map` (PR #98643)
via libcxx-commits
libcxx-commits at lists.llvm.org
Sun Oct 13 04:13:36 PDT 2024
================
@@ -136,10 +136,16 @@ class _LIBCPP_TEMPLATE_VIS reverse_iterator
_LIBCPP_HIDE_FROM_ABI constexpr pointer operator->() const
requires is_pointer_v<_Iter> || requires(const _Iter __i) { __i.operator->(); }
{
+ // std::prev does not work for bidirectional_iterator && !LegacyBidirectionalIterator
----------------
huixie90 wrote:
I created a PR
https://github.com/llvm/llvm-project/pull/112100
https://github.com/llvm/llvm-project/pull/98643
More information about the libcxx-commits
mailing list