From: adamk@chromium.org Date: Thu, 3 Jan 2013 21:22:10 +0000 (+0000) Subject: Unreviewed build fix. X-Git-Url: https://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=c0c6425ab53771cb62af3e131644aaa326e159d9 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 --- 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 }