Changeset 102621 in webkit


Ignore:
Timestamp:
Dec 12, 2011 2:09:26 PM (12 years ago)
Author:
kbr@google.com
Message:

COMPILE_ASSERT in CSSStyleSelector.cpp doesn't compile on Windows
https://bugs.webkit.org/show_bug.cgi?id=74327

Unreviewed build fix. True fix should follow under above bug.

  • css/CSSStyleSelector.cpp:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r102620 r102621  
     12011-12-12  Kenneth Russell  <kbr@google.com>
     2
     3        COMPILE_ASSERT in CSSStyleSelector.cpp doesn't compile on Windows
     4        https://bugs.webkit.org/show_bug.cgi?id=74327
     5
     6        Unreviewed build fix. True fix should follow under above bug.
     7
     8        * css/CSSStyleSelector.cpp:
     9
    1102011-12-12  David Grogan  <dgrogan@chromium.org>
    211
  • trunk/Source/WebCore/css/CSSStyleSelector.cpp

    r102613 r102621  
    212212};
    213213
     214#if !OS(WINDOWS)
    214215COMPILE_ASSERT(sizeof(RuleData) == sizeof(SameSizeAsRuleData), RuleData_should_stay_small);
     216#endif
    215217
    216218class RuleSet {
Note: See TracChangeset for help on using the changeset viewer.