Skip to content

Commit 1fc645d

Browse files
committed
Address comment
1 parent ff03257 commit 1fc645d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libcxx/include/__memory/unique_ptr.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,8 @@ operator<=>(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {
675675
#endif
676676

677677
template <class _T1, class _D1>
678-
inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 bool operator==(const unique_ptr<_T1, _D1>& __x, nullptr_t) _NOEXCEPT {
678+
inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 bool
679+
operator==(const unique_ptr<_T1, _D1>& __x, nullptr_t) _NOEXCEPT {
679680
return !__x;
680681
}
681682

0 commit comments

Comments
 (0)