summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Loser <joeloser93@gmail.com>2022-02-07 21:33:11 -0500
committerJoe Loser <joeloser93@gmail.com>2022-02-11 18:37:32 -0500
commit8f0b2ac140c36f37597deef66bea8a7739c18a7b (patch)
treec0e033aaa34e0a39c81dd362f671a0dd8e38aa19
parentaf969141fa285157044e34fb6b27963c3278241b (diff)
[libc++] Use _LIBCPP_NO_UNIQUE_ADDRESS for base in join_view
Despite the comment saying `[[no_unique_address]]` on the `__base_` data member makes clang crash, this does not seem to be true on CI. So, mark `__base_` with `_LIBCPP_NO_UNIQUE_ADDRESS`. Differential Revision: https://reviews.llvm.org/D119208
-rw-r--r--libcxx/include/__ranges/join_view.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/__ranges/join_view.h b/libcxx/include/__ranges/join_view.h
index 1af22213369a..4bab8dfeec43 100644
--- a/libcxx/include/__ranges/join_view.h
+++ b/libcxx/include/__ranges/join_view.h
@@ -68,7 +68,7 @@ namespace ranges {
static constexpr bool _UseCache = !is_reference_v<_InnerRange>;
using _Cache = _If<_UseCache, __non_propagating_cache<remove_cvref_t<_InnerRange>>, __empty_cache>;
_LIBCPP_NO_UNIQUE_ADDRESS _Cache __cache_;
- _View __base_ = _View(); // TODO: [[no_unique_address]] makes clang crash! File a bug :)
+ _LIBCPP_NO_UNIQUE_ADDRESS _View __base_ = _View();
public:
_LIBCPP_HIDE_FROM_ABI