diff options
author | RedworkDE <10944644+RedworkDE@users.noreply.github.com> | 2023-05-22 13:07:56 +0200 |
---|---|---|
committer | RedworkDE <10944644+RedworkDE@users.noreply.github.com> | 2023-05-22 16:38:57 +0200 |
commit | 69f2bc27517a0a352f0a7859de16c2fafa7a0264 (patch) | |
tree | 0035320a7c61c6f86f4ef3a65aad70a41c4ee91f /core/templates | |
parent | 809a98216267f3066b9fec2f02b2042bdc9d3e0d (diff) | |
download | redot-engine-69f2bc27517a0a352f0a7859de16c2fafa7a0264.tar.gz |
Improve `SelfList` and fix error in `BaseMaterial3D` when running doctool
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/self_list.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/core/templates/self_list.h b/core/templates/self_list.h index c3d7391d6c..ff6fa953ae 100644 --- a/core/templates/self_list.h +++ b/core/templates/self_list.h @@ -99,11 +99,20 @@ public: p_elem->_root = nullptr; } + void clear() { + while (_first) { + remove(_first); + } + } + _FORCE_INLINE_ SelfList<T> *first() { return _first; } _FORCE_INLINE_ const SelfList<T> *first() const { return _first; } _FORCE_INLINE_ List() {} - _FORCE_INLINE_ ~List() { ERR_FAIL_COND(_first != nullptr); } + _FORCE_INLINE_ ~List() { + // A self list must be empty on destruction. + DEV_ASSERT(_first == nullptr); + } }; private: |