Skip to content

Commit

Permalink
Fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
H-G-Hristov committed Jul 10, 2024
1 parent 8fcbddc commit 34387e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcxx/test/std/utilities/smartptr/adapt/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ static_assert(std::is_constructible_v< ResettablePtr<int>, int* >);

template <typename _Tp>
struct NonConstructiblePtr : public ResettablePtr<_Tp> {
NonConstructiblePtr() : NonConstructiblePtr::ResettablePtr(nullptr){};
NonConstructiblePtr() : NonConstructiblePtr::ResettablePtr(nullptr) {};

void reset(_Tp* p) { ResettablePtr<_Tp>::ptr.reset(p); }
};
Expand Down

0 comments on commit 34387e2

Please sign in to comment.