Title: [138731] trunk/Source/WebCore
- Revision
- 138731
- Author
- [email protected]
- Date
- 2013-01-03 13:22:10 -0800 (Thu, 03 Jan 2013)
Log Message
Unreviewed build fix.
* dom/ContainerNode.cpp:
(WebCore::isInTemplateContent): s/UNUSED/UNUSED_PARAM/
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (138730 => 138731)
--- trunk/Source/WebCore/ChangeLog 2013-01-03 21:16:59 UTC (rev 138730)
+++ trunk/Source/WebCore/ChangeLog 2013-01-03 21:22:10 UTC (rev 138731)
@@ -1,5 +1,12 @@
2013-01-03 Adam Klein <[email protected]>
+ Unreviewed build fix.
+
+ * dom/ContainerNode.cpp:
+ (WebCore::isInTemplateContent): s/UNUSED/UNUSED_PARAM/
+
+2013-01-03 Adam Klein <[email protected]>
+
[HTMLTemplateElement] Disallow cycles within template content
https://bugs.webkit.org/show_bug.cgi?id=105066
Modified: trunk/Source/WebCore/dom/ContainerNode.cpp (138730 => 138731)
--- trunk/Source/WebCore/dom/ContainerNode.cpp 2013-01-03 21:16:59 UTC (rev 138730)
+++ trunk/Source/WebCore/dom/ContainerNode.cpp 2013-01-03 21:22:10 UTC (rev 138731)
@@ -144,7 +144,7 @@
Document* document = node->document();
return document && document == document->templateContentsOwnerDocument();
#else
- UNUSED(node);
+ UNUSED_PARAM(node);
return false;
#endif
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes