Title: [92435] trunk/Source/WebCore
Revision
92435
Author
simon.fra...@apple.com
Date
2011-08-04 17:26:51 -0700 (Thu, 04 Aug 2011)

Log Message

2011-08-04  Simon Fraser  <simon.fra...@apple.com>

        Fix release build failure with last commit.

        * rendering/RenderView.cpp:
        (WebCore::RenderView::mapLocalToContainer):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (92434 => 92435)


--- trunk/Source/WebCore/ChangeLog	2011-08-05 00:19:41 UTC (rev 92434)
+++ trunk/Source/WebCore/ChangeLog	2011-08-05 00:26:51 UTC (rev 92435)
@@ -1,5 +1,12 @@
 2011-08-04  Simon Fraser  <simon.fra...@apple.com>
 
+        Fix release build failure with last commit.
+
+        * rendering/RenderView.cpp:
+        (WebCore::RenderView::mapLocalToContainer):
+
+2011-08-04  Simon Fraser  <simon.fra...@apple.com>
+
         Add code to determine whether a Range in inside fixed position content
         https://bugs.webkit.org/show_bug.cgi?id=65720
 

Modified: trunk/Source/WebCore/rendering/RenderView.cpp (92434 => 92435)


--- trunk/Source/WebCore/rendering/RenderView.cpp	2011-08-05 00:19:41 UTC (rev 92434)
+++ trunk/Source/WebCore/rendering/RenderView.cpp	2011-08-05 00:26:51 UTC (rev 92435)
@@ -142,8 +142,7 @@
     // If a container was specified, and was not 0 or the RenderView,
     // then we should have found it by now.
     ASSERT_ARG(repaintContainer, !repaintContainer || repaintContainer == this);
-    ASSERT(!wasFixed || *wasFixed == fixed);
-    UNUSED_PARAM(fixed);
+    ASSERT_UNUSED(wasFixed, !wasFixed || *wasFixed == fixed);
 
     if (!repaintContainer && useTransforms && shouldUseTransformFromContainer(0)) {
         TransformationMatrix t;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to