Title: [207833] trunk/Source/WebCore
Revision
207833
Author
[email protected]
Date
2016-10-25 12:20:59 -0700 (Tue, 25 Oct 2016)

Log Message

LOG_WITH_STREAM() macro should not have a semi colon at the end
https://bugs.webkit.org/show_bug.cgi?id=163951

Reviewed by Simon Fraser.

* platform/LogMacros.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (207832 => 207833)


--- trunk/Source/WebCore/ChangeLog	2016-10-25 19:17:38 UTC (rev 207832)
+++ trunk/Source/WebCore/ChangeLog	2016-10-25 19:20:59 UTC (rev 207833)
@@ -1,5 +1,14 @@
 2016-10-25  Chris Dumez  <[email protected]>
 
+        LOG_WITH_STREAM() macro should not have a semi colon at the end
+        https://bugs.webkit.org/show_bug.cgi?id=163951
+
+        Reviewed by Simon Fraser.
+
+        * platform/LogMacros.h:
+
+2016-10-25  Chris Dumez  <[email protected]>
+
         IDBObjectStore.createIndex() should take a union in parameter
         https://bugs.webkit.org/show_bug.cgi?id=163935
 

Modified: trunk/Source/WebCore/platform/LogMacros.h (207832 => 207833)


--- trunk/Source/WebCore/platform/LogMacros.h	2016-10-25 19:17:38 UTC (rev 207832)
+++ trunk/Source/WebCore/platform/LogMacros.h	2016-10-25 19:20:59 UTC (rev 207833)
@@ -37,6 +37,6 @@
         WebCore::TextStream stream(WebCore::TextStream::LineMode::SingleLine); \
         commands; \
         WTFLog(&JOIN_LOG_CHANNEL_WITH_PREFIX(LOG_CHANNEL_PREFIX, channel), "%s", stream.release().utf8().data()); \
-    } while (0);
+    } while (0)
 
 #endif // !LOG_DISABLED
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to