diff options
Diffstat (limited to 'asl/maybe_uninit.hpp')
-rw-r--r-- | asl/maybe_uninit.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asl/maybe_uninit.hpp b/asl/maybe_uninit.hpp index cedd96f..e59cfe0 100644 --- a/asl/maybe_uninit.hpp +++ b/asl/maybe_uninit.hpp @@ -53,7 +53,7 @@ public: // @Safety Must be called only when in initialized state.
constexpr void uninit_unsafe() &
{
- destruct(init_ptr_unsafe());
+ destroy(init_ptr_unsafe());
}
};
|