Skip to content

Commit 7a65205

Browse files
committed
Remove "unsigned"
1 parent 9f35dfc commit 7a65205

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/include/__utility/no_destroy.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ struct __no_destroy {
4646
_LIBCPP_HIDE_FROM_ABI _Tp const& __get() const { return *reinterpret_cast<const _Tp*>(__obj_); }
4747

4848
private:
49-
_ALIGNAS_TYPE(_Tp) unsigned char __obj_[sizeof(_Tp)] = {};
49+
_ALIGNAS_TYPE(_Tp) char __obj_[sizeof(_Tp)] = {};
5050
};
5151

5252
_LIBCPP_END_NAMESPACE_STD

0 commit comments

Comments
 (0)