summaryrefslogtreecommitdiff
path: root/AK/RedBlackTree.h
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2022-10-17 00:06:11 +0200
committerLinus Groh <mail@linusgroh.de>2022-12-03 23:52:23 +0000
commitd26aabff0401690d6dd1332558b40f5cb64e4428 (patch)
treefd56d0ab5b672814a1a2fb7b8a92fefb01f24e6f /AK/RedBlackTree.h
parent8639d8bc212dcb45aff80405b4b0f6b1ef1087e7 (diff)
downloadserenity-d26aabff0401690d6dd1332558b40f5cb64e4428.zip
Everywhere: Run clang-format
Diffstat (limited to 'AK/RedBlackTree.h')
-rw-r--r--AK/RedBlackTree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/RedBlackTree.h b/AK/RedBlackTree.h
index 43d044ca58..54a0f357f1 100644
--- a/AK/RedBlackTree.h
+++ b/AK/RedBlackTree.h
@@ -505,7 +505,7 @@ public:
Iterator end() { return {}; }
Iterator begin_from(K key) { return Iterator(static_cast<Node*>(BaseTree::find(this->m_root, key))); }
- using ConstIterator = RedBlackTreeIterator<const RedBlackTree, const V>;
+ using ConstIterator = RedBlackTreeIterator<const RedBlackTree, V const>;
friend ConstIterator;
ConstIterator begin() const { return ConstIterator(static_cast<Node*>(this->m_minimum)); }
ConstIterator end() const { return {}; }