From b71020b09540dc7b661834240cbfa1873e5c9a0c Mon Sep 17 00:00:00 2001 From: X512 Date: Wed, 2 Nov 2022 07:11:10 +0900 Subject: [PATCH] util/DoublyLinkedList: make GetPrevious/GetNext methods static This methods do not need DoublyLinkedList class state. sGetLink field that actually implement GetPrevious/GetNext methods is already static. Change-Id: Ie0b40f7f1b72d640d75403905b8944666874dc87 Reviewed-on: https://review.haiku-os.org/c/haiku/+/5796 Tested-by: Commit checker robot Reviewed-by: waddlesplash --- headers/private/kernel/util/DoublyLinkedList.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/headers/private/kernel/util/DoublyLinkedList.h b/headers/private/kernel/util/DoublyLinkedList.h index f796bfa3ea..ce6845e3e2 100644 --- a/headers/private/kernel/util/DoublyLinkedList.h +++ b/headers/private/kernel/util/DoublyLinkedList.h @@ -356,8 +356,8 @@ public: inline Element* RemoveHead(); inline Element* RemoveTail(); - inline Element* GetPrevious(Element* element) const; - inline Element* GetNext(Element* element) const; + static inline Element* GetPrevious(Element* element); + static inline Element* GetNext(Element* element); inline bool Contains(Element* element) const; // O(n)! @@ -605,7 +605,7 @@ DOUBLY_LINKED_LIST_CLASS_NAME::RemoveTail() // GetPrevious DOUBLY_LINKED_LIST_TEMPLATE_LIST Element* -DOUBLY_LINKED_LIST_CLASS_NAME::GetPrevious(Element* element) const +DOUBLY_LINKED_LIST_CLASS_NAME::GetPrevious(Element* element) { Element* result = NULL; if (element) @@ -616,7 +616,7 @@ DOUBLY_LINKED_LIST_CLASS_NAME::GetPrevious(Element* element) const // GetNext DOUBLY_LINKED_LIST_TEMPLATE_LIST Element* -DOUBLY_LINKED_LIST_CLASS_NAME::GetNext(Element* element) const +DOUBLY_LINKED_LIST_CLASS_NAME::GetNext(Element* element) { Element* result = NULL; if (element)