Skip to content

Commit

Permalink
[libc++] Replace [[no_unique_addredd]] with _LIBCPP_NO_UNIQUE_ADDRESS…
Browse files Browse the repository at this point in the history
… in __algorithm/min_max_result.h
  • Loading branch information
philnik777 committed Feb 21, 2022
1 parent b6ca853 commit c7b43b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libcxx/include/__algorithm/min_max_result.h
Expand Up @@ -29,8 +29,8 @@ namespace ranges {

template <class _T1>
struct min_max_result {
[[no_unique_address]] _T1 min;
[[no_unique_address]] _T1 max;
_LIBCPP_NO_UNIQUE_ADDRESS _T1 min;
_LIBCPP_NO_UNIQUE_ADDRESS _T1 max;

template <class _T2>
requires convertible_to<const _T1&, _T2>
Expand Down

0 comments on commit c7b43b0

Please sign in to comment.