Title: [138679] trunk/Source/WebCore
Revision
138679
Author
[email protected]
Date
2013-01-02 16:53:34 -0800 (Wed, 02 Jan 2013)

Log Message

        Release build fix.

        * platform/network/cf/FormDataStreamCFNet.cpp: (WebCore::formFinalize):
        Use ASSERT_UNUSED for an otherwise unused variable.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (138678 => 138679)


--- trunk/Source/WebCore/ChangeLog	2013-01-03 00:43:42 UTC (rev 138678)
+++ trunk/Source/WebCore/ChangeLog	2013-01-03 00:53:34 UTC (rev 138679)
@@ -1,3 +1,10 @@
+2013-01-02  Alexey Proskuryakov  <[email protected]>
+
+        Release build fix.
+
+        * platform/network/cf/FormDataStreamCFNet.cpp: (WebCore::formFinalize):
+        Use ASSERT_UNUSED for an otherwise unused variable.
+
 2013-01-02  Tony Chang  <[email protected]>
 
         Unreviewed, rolling out r138661.

Modified: trunk/Source/WebCore/platform/network/cf/FormDataStreamCFNet.cpp (138678 => 138679)


--- trunk/Source/WebCore/platform/network/cf/FormDataStreamCFNet.cpp	2013-01-03 00:43:42 UTC (rev 138678)
+++ trunk/Source/WebCore/platform/network/cf/FormDataStreamCFNet.cpp	2013-01-03 00:53:34 UTC (rev 138679)
@@ -226,7 +226,7 @@
 static void formFinalize(CFReadStreamRef stream, void* context)
 {
     FormStreamFields* form = static_cast<FormStreamFields*>(context);
-    ASSERT(form->formStream == stream);
+    ASSERT_UNUSED(stream, form->formStream == stream);
 
     callOnMainThread(formFinishFinalizationOnMainThread, form);
 }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to