Title: [116262] trunk/Source/WebCore
Revision
116262
Author
[email protected]
Date
2012-05-06 19:53:33 -0700 (Sun, 06 May 2012)

Log Message

Unreviewed build fix for r116260.

COMPILE_ASSERT() does not expect a string in its second parameter.

* platform/graphics/TextRun.cpp:
(WebCore):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (116261 => 116262)


--- trunk/Source/WebCore/ChangeLog	2012-05-07 02:24:07 UTC (rev 116261)
+++ trunk/Source/WebCore/ChangeLog	2012-05-07 02:53:33 UTC (rev 116262)
@@ -1,3 +1,12 @@
+2012-05-06  Raphael Kubo da Costa  <[email protected]>
+
+        Unreviewed build fix for r116260.
+
+        COMPILE_ASSERT() does not expect a string in its second parameter.
+
+        * platform/graphics/TextRun.cpp:
+        (WebCore):
+
 2012-05-06  Rob Buis  <[email protected]>
 
         Shrink TextRun object size

Modified: trunk/Source/WebCore/platform/graphics/TextRun.cpp (116261 => 116262)


--- trunk/Source/WebCore/platform/graphics/TextRun.cpp	2012-05-07 02:24:07 UTC (rev 116261)
+++ trunk/Source/WebCore/platform/graphics/TextRun.cpp	2012-05-07 02:53:33 UTC (rev 116262)
@@ -40,7 +40,7 @@
     RefPtr<TextRun::RenderingContext> renderingContext;
 };
 
-COMPILE_ASSERT(sizeof(TextRun) == sizeof(ExpectedTextRunSize), "TextRun is not of expected size");
+COMPILE_ASSERT(sizeof(TextRun) == sizeof(ExpectedTextRunSize), TextRun_is_not_of_expected_size);
 
 bool TextRun::s_allowsRoundingHacks = false;
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to