Title: [195448] trunk/Source/WTF
Revision
195448
Author
[email protected]
Date
2016-01-22 03:01:28 -0800 (Fri, 22 Jan 2016)

Log Message

Buildfix for older GCCs after r195142
https://bugs.webkit.org/show_bug.cgi?id=153351

Unreviewed buildfix.


* wtf/SystemTracing.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (195447 => 195448)


--- trunk/Source/WTF/ChangeLog	2016-01-22 09:19:44 UTC (rev 195447)
+++ trunk/Source/WTF/ChangeLog	2016-01-22 11:01:28 UTC (rev 195448)
@@ -1,3 +1,12 @@
+2016-01-22  Csaba Osztrogonác  <[email protected]>
+
+        Buildfix for older GCCs after r195142
+        https://bugs.webkit.org/show_bug.cgi?id=153351
+
+        Unreviewed buildfix.
+
+        * wtf/SystemTracing.h:
+
 2016-01-21  Filip Pizlo  <[email protected]>
 
         REGRESSION(r195417): many tests crash

Modified: trunk/Source/WTF/wtf/SystemTracing.h (195447 => 195448)


--- trunk/Source/WTF/wtf/SystemTracing.h	2016-01-22 09:19:44 UTC (rev 195447)
+++ trunk/Source/WTF/wtf/SystemTracing.h	2016-01-22 11:01:28 UTC (rev 195448)
@@ -26,10 +26,12 @@
 #ifndef SystemTracing_h
 #define SystemTracing_h
 
-#if defined(__has_include) && __has_include(<System/sys/kdebug.h>)
+#if defined(__has_include)
+#if __has_include(<System/sys/kdebug.h>)
 #include <System/sys/kdebug.h>
 #define HAVE_KDEBUG_H 1
 #endif
+#endif
 
 // No namespaces because this file has to be includable from C and Objective-C.
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to