Changeset 220528 in webkit


Ignore:
Timestamp:
Aug 10, 2017 8:44:39 AM (7 years ago)
Author:
Antti Koivisto
Message:

Try to fix windows build.

  • style/StyleUpdate.h:

(WebCore::Style::TextUpdate::TextUpdate):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r220525 r220528  
     12017-08-10  Antti Koivisto  <antti@apple.com>
     2
     3        Try to fix windows build.
     4
     5        * style/StyleUpdate.h:
     6        (WebCore::Style::TextUpdate::TextUpdate):
     7
    182017-08-10  Carlos Garcia Campos  <cgarcia@igalia.com>
    29
  • trunk/Source/WebCore/style/StyleUpdate.h

    r220523 r220528  
    5656
    5757struct TextUpdate {
     58    TextUpdate() = default;
     59    TextUpdate(unsigned offset, unsigned length)
     60        : offset(offset)
     61        , length(length)
     62    { }
     63
    5864    unsigned offset { 0 };
    5965    unsigned length { std::numeric_limits<unsigned>::max() };
Note: See TracChangeset for help on using the changeset viewer.