Index: Source/wtf/DoublyLinkedList.h |
diff --git a/Source/wtf/DoublyLinkedList.h b/Source/wtf/DoublyLinkedList.h |
index cd067ef0a8768afb4d00c55733b5015e249e3048..1c822266136c52e9d40325546d7f2fc49538236c 100644 |
--- a/Source/wtf/DoublyLinkedList.h |
+++ b/Source/wtf/DoublyLinkedList.h |
@@ -32,10 +32,10 @@ namespace WTF { |
template<typename T> class DoublyLinkedListNode { |
public: |
DoublyLinkedListNode(); |
- |
+ |
void setPrev(T*); |
void setNext(T*); |
- |
+ |
T* prev() const; |
T* next() const; |
}; |
@@ -69,7 +69,7 @@ template<typename T> inline T* DoublyLinkedListNode<T>::next() const |
template<typename T> class DoublyLinkedList { |
public: |
DoublyLinkedList(); |
- |
+ |
bool isEmpty() const; |
size_t size() const; // This is O(n). |
void clear(); |