Changeset 116262 in webkit


Ignore:
Timestamp:
May 6, 2012 7:53:33 PM (12 years ago)
Author:
rakuco@webkit.org
Message:

Unreviewed build fix for r116260.

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

  • platform/graphics/TextRun.cpp:

(WebCore):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r116260 r116262  
     12012-05-06  Raphael Kubo da Costa  <rakuco@webkit.org>
     2
     3        Unreviewed build fix for r116260.
     4
     5        COMPILE_ASSERT() does not expect a string in its second parameter.
     6
     7        * platform/graphics/TextRun.cpp:
     8        (WebCore):
     9
    1102012-05-06  Rob Buis  <rbuis@rim.com>
    211
  • trunk/Source/WebCore/platform/graphics/TextRun.cpp

    r116260 r116262  
    4141};
    4242
    43 COMPILE_ASSERT(sizeof(TextRun) == sizeof(ExpectedTextRunSize), "TextRun is not of expected size");
     43COMPILE_ASSERT(sizeof(TextRun) == sizeof(ExpectedTextRunSize), TextRun_is_not_of_expected_size);
    4444
    4545bool TextRun::s_allowsRoundingHacks = false;
Note: See TracChangeset for help on using the changeset viewer.