AK: Mark RedBlackTree as final

This commit is contained in:
Brian Gianforcaro 2021-07-16 22:59:54 -07:00 committed by Andreas Kling
parent 86b02a678c
commit deda32628a
Notes: sideshowbarker 2024-07-18 08:53:36 +09:00

View file

@ -420,7 +420,7 @@ private:
};
template<Integral K, typename V>
class RedBlackTree : public BaseRedBlackTree<K> {
class RedBlackTree final : public BaseRedBlackTree<K> {
public:
RedBlackTree() = default;
virtual ~RedBlackTree() override