1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-09-15 20:26:17 +00:00

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

View file

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