Index: Source/core/html/HTMLTableRowsCollection.cpp |
diff --git a/Source/core/html/HTMLTableRowsCollection.cpp b/Source/core/html/HTMLTableRowsCollection.cpp |
index aa0f70c4865b2aaad7aa985db558ad7b31513adb..dbf5e04e827a1ac577114aeacfe582d7fc0e79f8 100644 |
--- a/Source/core/html/HTMLTableRowsCollection.cpp |
+++ b/Source/core/html/HTMLTableRowsCollection.cpp |
@@ -143,8 +143,9 @@ HTMLTableRowsCollection::HTMLTableRowsCollection(ContainerNode& table) |
ASSERT(isHTMLTableElement(table)); |
} |
-PassRefPtrWillBeRawPtr<HTMLTableRowsCollection> HTMLTableRowsCollection::create(ContainerNode& table, CollectionType) |
+PassRefPtrWillBeRawPtr<HTMLTableRowsCollection> HTMLTableRowsCollection::create(ContainerNode& table, CollectionType type) |
{ |
+ ASSERT_UNUSED(type, type == TableRows); |
return adoptRefWillBeNoop(new HTMLTableRowsCollection(table)); |
} |