Skip to content

Commit b1bed3d

Browse files
committed
Fix CI
1 parent 3f119ca commit b1bed3d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libcxx/include/optional

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -999,7 +999,8 @@ _LIBCPP_HIDE_FROM_ABI constexpr bool operator==(const optional<_Tp>& __x, const
999999

10001000
template < class _Tp,
10011001
class _Up,
1002-
enable_if_t<__is_convertible_to_bool_v<decltype(std::declval<const _Tp&>() != std::declval<const _Up&>())>, int> = 0>
1002+
enable_if_t<__is_convertible_to_bool_v<decltype(std::declval<const _Tp&>() != std::declval<const _Up&>())>,
1003+
int> = 0>
10031004
_LIBCPP_HIDE_FROM_ABI constexpr bool operator!=(const optional<_Tp>& __x, const optional<_Up>& __y) {
10041005
if (static_cast<bool>(__x) != static_cast<bool>(__y))
10051006
return true;

0 commit comments

Comments
 (0)