summaryrefslogtreecommitdiff
path: root/libcxx
diff options
context:
space:
mode:
authorNikolas Klauser <n_klauser@apple.com>2023-05-02 10:48:00 -0700
committerNikolas Klauser <n_klauser@apple.com>2023-05-02 10:49:39 -0700
commit7e7bd9833b1084b9724f48f0f05609a7b975b516 (patch)
treefa25c10bcef5780f426783029de368105b6a8ed5 /libcxx
parent611bd6c6aeb9a9d194aa128e2d20b4b6bbb1fc84 (diff)
downloadllvm-7e7bd9833b1084b9724f48f0f05609a7b975b516.tar.gz
[libc++] Add _LIBCPP_HIDE_FROM_ABI to the unsequenced_policy constructor
Diffstat (limited to 'libcxx')
-rw-r--r--libcxx/include/execution2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/execution b/libcxx/include/execution
index 30e6682a97fd..d73445dca112 100644
--- a/libcxx/include/execution
+++ b/libcxx/include/execution
@@ -87,7 +87,7 @@ constexpr __unsequenced_policy __unseq{__disable_user_instantiations_tag{}};
# if _LIBCPP_STD_VER >= 20
struct unsequenced_policy {
- constexpr explicit unsequenced_policy(__disable_user_instantiations_tag) {}
+ _LIBCPP_HIDE_FROM_ABI constexpr explicit unsequenced_policy(__disable_user_instantiations_tag) {}
unsequenced_policy(const unsequenced_policy&) = delete;
unsequenced_policy& operator=(const unsequenced_policy&) = delete;
};