Changeset 209066 in webkit
- Timestamp:
- Nov 29, 2016, 4:57:34 AM (8 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r209065 r209066 1 2016-11-29 Antti Koivisto <antti@apple.com> 2 3 Try to fix win/gtk build. 4 5 * style/StyleUpdate.h: 6 (WebCore::Style::ElementUpdate::ElementUpdate): 7 8 Add explicit constructor for compilers that don't support C++14 list initialization correctly. 9 1 10 2016-11-28 Antti Koivisto <antti@apple.com> 2 11 -
trunk/Source/WebCore/style/StyleUpdate.h
r208668 r209066 46 46 47 47 struct ElementUpdate { 48 ElementUpdate() = default; 49 ElementUpdate(std::unique_ptr<RenderStyle> style, Change change, bool recompositeLayer) 50 : style(WTFMove(style)) 51 , change(change) 52 , recompositeLayer(recompositeLayer) 53 { } 48 54 std::unique_ptr<RenderStyle> style; 49 55 Change change { NoChange };
Note:
See TracChangeset
for help on using the changeset viewer.