Skip to content

Commit e0e7bd1

Browse files
author
Arthur O'Dwyer
committed
[libc++] Add missing std:: qualification to __synth_three_way.
This might be unobservable, since __synth_three_way is only ever called as a result of using an (ADL) operator on std::pair or std::tuple.
1 parent 7e32cad commit e0e7bd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/include/__compare/synth_three_way.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ _LIBCPP_HIDE_FROM_ABI inline constexpr auto __synth_three_way =
4242
};
4343

4444
template <class _Tp, class _Up = _Tp>
45-
using __synth_three_way_result = decltype(__synth_three_way(declval<_Tp&>(), declval<_Up&>()));
45+
using __synth_three_way_result = decltype(std::__synth_three_way(declval<_Tp&>(), declval<_Up&>()));
4646

4747
#endif // !defined(_LIBCPP_HAS_NO_CONCEPTS)
4848

0 commit comments

Comments
 (0)