Title: [236608] trunk/Source/WTF
Revision
236608
Author
[email protected]
Date
2018-09-28 13:02:55 -0700 (Fri, 28 Sep 2018)

Log Message

Replace recently added line comments in Compiler.h
https://bugs.webkit.org/show_bug.cgi?id=190062
<rdar://problem/44838618>

Reviewed by Joseph Pecoraro.

This breaks some Apple-internal tooling. For now, work around it by
changing the comment style. On the other side, the issue will be fixed
more permanently by adopting the approach from r230213.

* wtf/Compiler.h: Use multiline comments.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (236607 => 236608)


--- trunk/Source/WTF/ChangeLog	2018-09-28 19:47:22 UTC (rev 236607)
+++ trunk/Source/WTF/ChangeLog	2018-09-28 20:02:55 UTC (rev 236608)
@@ -1,3 +1,17 @@
+2018-09-28  Brian Burg  <[email protected]>
+
+        Replace recently added line comments in Compiler.h
+        https://bugs.webkit.org/show_bug.cgi?id=190062
+        <rdar://problem/44838618>
+
+        Reviewed by Joseph Pecoraro.
+
+        This breaks some Apple-internal tooling. For now, work around it by
+        changing the comment style. On the other side, the issue will be fixed
+        more permanently by adopting the approach from r230213.
+
+        * wtf/Compiler.h: Use multiline comments.
+
 2018-09-28  Jer Noble  <[email protected]>
 
         Refactoring: eliminate raw pointer usage in Fullscreen code

Modified: trunk/Source/WTF/wtf/Compiler.h (236607 => 236608)


--- trunk/Source/WTF/wtf/Compiler.h	2018-09-28 19:47:22 UTC (rev 236607)
+++ trunk/Source/WTF/wtf/Compiler.h	2018-09-28 20:02:55 UTC (rev 236608)
@@ -381,10 +381,10 @@
 #define __has_include(path) 0
 #endif
 
-/* IGNORE_WARNINGS.* */
+/* IGNORE_WARNINGS */
 
-// Can't use WTF_CONCAT() and STRINGIZE() because they are defined in
-// StdLibExtras.h which includes us
+/* Can't use WTF_CONCAT() and STRINGIZE() because they are defined in
+ * StdLibExtras.h, which includes this file. */
 #define _COMPILER_CONCAT_I(a, b) a ## b
 #define _COMPILER_CONCAT(a, b) _COMPILER_CONCAT_I(a, b)
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to