diff --git a/AK/NonnullRefPtr.h b/AK/NonnullRefPtr.h index 762a989cb43..949d14bdb1b 100644 --- a/AK/NonnullRefPtr.h +++ b/AK/NonnullRefPtr.h @@ -212,7 +212,7 @@ private: ALWAYS_INLINE RETURNS_NONNULL T* as_nonnull_ptr() const { - VERIFY(m_ptr); + ASSERT(m_ptr); return m_ptr; }