summaryrefslogtreecommitdiffstats
path: root/libcxx/include/__algorithm/in_fun_result.h
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/include/__algorithm/in_fun_result.h')
-rw-r--r--libcxx/include/__algorithm/in_fun_result.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/include/__algorithm/in_fun_result.h b/libcxx/include/__algorithm/in_fun_result.h
index db952aea701a..d5186e11b7ea 100644
--- a/libcxx/include/__algorithm/in_fun_result.h
+++ b/libcxx/include/__algorithm/in_fun_result.h
@@ -25,8 +25,8 @@ _LIBCPP_BEGIN_NAMESPACE_STD
namespace ranges {
template <class _Ip, class _Fp>
struct in_fun_result {
- [[no_unique_address]] _Ip in;
- [[no_unique_address]] _Fp fun;
+ _LIBCPP_NO_UNIQUE_ADDRESS _Ip in;
+ _LIBCPP_NO_UNIQUE_ADDRESS _Fp fun;
template <class _I2, class _F2>
requires convertible_to<const _Ip&, _I2> && convertible_to<const _Fp&, _F2>