From c0c6425ab53771cb62af3e131644aaa326e159d9 Mon Sep 17 00:00:00 2001 From: "adamk@chromium.org" Date: Thu, 3 Jan 2013 21:22:10 +0000 Subject: [PATCH] Unreviewed build fix. * dom/ContainerNode.cpp: (WebCore::isInTemplateContent): s/UNUSED/UNUSED_PARAM/ git-svn-id: https://svn.webkit.org/repository/webkit/trunk@138731 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Source/WebCore/ChangeLog | 7 +++++++ Source/WebCore/dom/ContainerNode.cpp | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index d0620e7d0ca7..e955012a8e40 100644 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog @@ -1,3 +1,10 @@ +2013-01-03 Adam Klein + + Unreviewed build fix. + + * dom/ContainerNode.cpp: + (WebCore::isInTemplateContent): s/UNUSED/UNUSED_PARAM/ + 2013-01-03 Adam Klein [HTMLTemplateElement] Disallow cycles within template content diff --git a/Source/WebCore/dom/ContainerNode.cpp b/Source/WebCore/dom/ContainerNode.cpp index 58780016aa0c..dd0a52314d4f 100644 --- a/Source/WebCore/dom/ContainerNode.cpp +++ b/Source/WebCore/dom/ContainerNode.cpp @@ -144,7 +144,7 @@ static inline bool isInTemplateContent(const Node* node) Document* document = node->document(); return document && document == document->templateContentsOwnerDocument(); #else - UNUSED(node); + UNUSED_PARAM(node); return false; #endif } -- 2.36.0