mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-23 13:05:12 +00:00
AK: Mark AK::IntrusiveRedBlackTree as final
This commit is contained in:
parent
9a6e065b36
commit
af65c4d8b7
Notes:
sideshowbarker
2024-07-18 08:53:29 +09:00
Author: https://github.com/bgianfo Commit: https://github.com/SerenityOS/serenity/commit/af65c4d8b73 Pull-request: https://github.com/SerenityOS/serenity/pull/8829 Reviewed-by: https://github.com/IdanHo ✅
1 changed files with 2 additions and 1 deletions
|
@ -14,7 +14,8 @@ template<Integral K>
|
|||
class IntrusiveRedBlackTreeNode;
|
||||
|
||||
template<Integral K, typename V, IntrusiveRedBlackTreeNode<K> V::*member>
|
||||
class IntrusiveRedBlackTree : public BaseRedBlackTree<K> {
|
||||
class IntrusiveRedBlackTree final : public BaseRedBlackTree<K> {
|
||||
|
||||
public:
|
||||
IntrusiveRedBlackTree() = default;
|
||||
virtual ~IntrusiveRedBlackTree() override
|
||||
|
|
Loading…
Add table
Reference in a new issue