AK: Mark AK::IntrusiveRedBlackTree as final

This commit is contained in:
Brian Gianforcaro 2021-07-17 02:25:28 -07:00 committed by Andreas Kling
parent 9a6e065b36
commit af65c4d8b7
Notes: sideshowbarker 2024-07-18 08:53:29 +09:00

View file

@ -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