Title: [166043] trunk/Source/WTF
Revision
166043
Author
da...@apple.com
Date
2014-03-20 23:44:06 -0700 (Thu, 20 Mar 2014)

Log Message

Fix a header guard mistake (harmless but clearly wrong)
https://bugs.webkit.org/show_bug.cgi?id=130559

Reviewed by Andreas Kling.

* wtf/text/StringConcatenate.h: Correct the macro name in the header guard.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (166042 => 166043)


--- trunk/Source/WTF/ChangeLog	2014-03-21 06:30:10 UTC (rev 166042)
+++ trunk/Source/WTF/ChangeLog	2014-03-21 06:44:06 UTC (rev 166043)
@@ -1,3 +1,12 @@
+2014-03-20  Darin Adler  <da...@apple.com>
+
+        Fix a header guard mistake (harmless but clearly wrong)
+        https://bugs.webkit.org/show_bug.cgi?id=130559
+
+        Reviewed by Andreas Kling.
+
+        * wtf/text/StringConcatenate.h: Correct the macro name in the header guard.
+
 2014-03-20  Hyowon Kim  <hw1008....@samsung.com>
 
         Move to using std::unique_ptr for EFL objects.

Modified: trunk/Source/WTF/wtf/text/StringConcatenate.h (166042 => 166043)


--- trunk/Source/WTF/wtf/text/StringConcatenate.h	2014-03-21 06:30:10 UTC (rev 166042)
+++ trunk/Source/WTF/wtf/text/StringConcatenate.h	2014-03-21 06:44:06 UTC (rev 166043)
@@ -28,7 +28,7 @@
 
 #include <string.h>
 
-#ifndef WTFString_h
+#ifndef AtomicString_h
 #include <wtf/text/AtomicString.h>
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to