mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 12:07:45 +00:00
AK: Mark AK::IntrusiveRedBlackTree as final
This commit is contained in:
parent
9a6e065b36
commit
af65c4d8b7
1 changed files with 2 additions and 1 deletions
|
@ -14,7 +14,8 @@ template<Integral K>
|
||||||
class IntrusiveRedBlackTreeNode;
|
class IntrusiveRedBlackTreeNode;
|
||||||
|
|
||||||
template<Integral K, typename V, IntrusiveRedBlackTreeNode<K> V::*member>
|
template<Integral K, typename V, IntrusiveRedBlackTreeNode<K> V::*member>
|
||||||
class IntrusiveRedBlackTree : public BaseRedBlackTree<K> {
|
class IntrusiveRedBlackTree final : public BaseRedBlackTree<K> {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
IntrusiveRedBlackTree() = default;
|
IntrusiveRedBlackTree() = default;
|
||||||
virtual ~IntrusiveRedBlackTree() override
|
virtual ~IntrusiveRedBlackTree() override
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue