[libcxx-commits] [PATCH] D142063: [libc++][ranges] implement `std::ranges::split_view` (WIP on testing, targeting llvm 16)
Hui via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Jan 18 15:54:42 PST 2023
huixie90 added inline comments.
================
Comment at: libcxx/include/__ranges/split_view.h:59
+ using _Cache = __non_propagating_cache<subrange<iterator_t<_View>>>;
+ _LIBCPP_NO_UNIQUE_ADDRESS _Cache __cached_begin_ = _Cache();
+
----------------
pointless `_LIBCPP_NO_UNIQUE_ADDRESS` .
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D142063/new/
https://reviews.llvm.org/D142063
More information about the libcxx-commits
mailing list