diff --git a/AK/IntrusiveList.h b/AK/IntrusiveList.h index 804b3d075f..9aed1f5852 100644 --- a/AK/IntrusiveList.h +++ b/AK/IntrusiveList.h @@ -187,7 +187,7 @@ private: IntrusiveListStorage* m_storage = nullptr; IntrusiveListNode* m_next = nullptr; IntrusiveListNode* m_prev = nullptr; - SelfReferenceIfNeeded m_self; + [[no_unique_address]] SelfReferenceIfNeeded m_self; }; }