mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
AK: Mark RedBlackTree as final
This commit is contained in:
parent
86b02a678c
commit
deda32628a
Notes:
sideshowbarker
2024-07-18 08:53:36 +09:00
Author: https://github.com/bgianfo Commit: https://github.com/SerenityOS/serenity/commit/deda32628a3 Pull-request: https://github.com/SerenityOS/serenity/pull/8829 Reviewed-by: https://github.com/IdanHo ✅
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue