Skip to content

Commit 300eefa

Browse files
committed
[libc++] Remove empty line
Signed-off-by: yronglin <[email protected]>
1 parent 58cfc99 commit 300eefa

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

libcxx/include/__expected/expected.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1873,7 +1873,6 @@ class expected<_Tp, _Err> : private __expected_void_base<_Err> {
18731873
requires is_void_v<_T2>
18741874
_LIBCPP_HIDE_FROM_ABI friend constexpr bool operator==(const expected& __x, const expected<_T2, _E2>& __y)
18751875
# if _LIBCPP_STD_VER >= 26
1876-
18771876
requires requires {
18781877
{ __x.error() == __y.error() } -> __core_convertible_to<bool>;
18791878
}
@@ -1889,7 +1888,6 @@ class expected<_Tp, _Err> : private __expected_void_base<_Err> {
18891888
template <class _E2>
18901889
_LIBCPP_HIDE_FROM_ABI friend constexpr bool operator==(const expected& __x, const unexpected<_E2>& __y)
18911890
# if _LIBCPP_STD_VER >= 26
1892-
18931891
requires requires {
18941892
{ __x.error() == __y.error() } -> __core_convertible_to<bool>;
18951893
}

0 commit comments

Comments
 (0)