AK: Decorate AK::NonnullOwnPtr::leak_ptr() with [[nodiscard]]

This commit is contained in:
Brian Gianforcaro 2020-08-05 06:51:36 -07:00 committed by Andreas Kling
parent fa625a2690
commit f34fcdedef
Notes: sideshowbarker 2024-07-19 04:16:37 +09:00

View File

@ -111,7 +111,7 @@ public:
return *this;
}
T* leak_ptr()
[[nodiscard]] T* leak_ptr()
{
return exchange(m_ptr, nullptr);
}