Index: Source/core/dom/ChildNodeList.cpp |
diff --git a/Source/core/dom/ChildNodeList.cpp b/Source/core/dom/ChildNodeList.cpp |
index bdef1e0a0116038ecc0bac860ae71cc87d2b0559..d87dec6e81c0538a3cf5bb8832274c9f4bb3c633 100644 |
--- a/Source/core/dom/ChildNodeList.cpp |
+++ b/Source/core/dom/ChildNodeList.cpp |
@@ -49,7 +49,7 @@ Node* ChildNodeList::itemBefore(const Node* previous) const |
return LIKELY(!!previous) ? previous->previousSibling() : rootNode().lastChild(); |
} |
-Node* ChildNodeList::traverseForwardToOffset(unsigned offset, Node& currentNode, unsigned& currentOffset, const ContainerNode&) const |
+Node* ChildNodeList::traverseForwardToOffset(unsigned offset, Node& currentNode, unsigned& currentOffset) const |
{ |
ASSERT(currentOffset < offset); |
Node* next = ¤tNode; |