Summary: | fix bit packing in FillLayer on Windows | ||||||||
---|---|---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Tony Chang <tony> | ||||||
Component: | New Bugs | Assignee: | Tony Chang <tony> | ||||||
Status: | RESOLVED FIXED | ||||||||
Severity: | Normal | CC: | darin, eric, rniwa, webkit.review.bot | ||||||
Priority: | P2 | ||||||||
Version: | 528+ (Nightly build) | ||||||||
Hardware: | Unspecified | ||||||||
OS: | Unspecified | ||||||||
Attachments: |
|
Description
Tony Chang
2012-05-04 10:12:14 PDT
Created attachment 140262 [details]
Patch
Comment on attachment 140262 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=140262&action=review > Source/WebCore/rendering/style/FillLayer.cpp:40 > +COMPILE_ASSERT(sizeof(FillLayer) == sizeof(SameSizeAsFillLayer), FillLayer_should_not_grow); I think we normally call these assertions FillLayer_should_stay_small. We should probably get rid of underscores at some point... Created attachment 140270 [details]
Patch for landing
Comment on attachment 140270 [details] Patch for landing Clearing flags on attachment: 140270 Committed r116129: <http://trac.webkit.org/changeset/116129> All reviewed patches have been landed. Closing bug. Where’s the COMPILE_ASSERT to catch us if we break this later? (In reply to comment #7) > Where’s the COMPILE_ASSERT to catch us if we break this later? It's in FillLayer.cpp. See the line 40 on http://trac.webkit.org/changeset/116129/trunk/Source/WebCore/rendering/style/FillLayer.cpp Ah, I see it now. Missed it the first time. |