Ticket #35989: assert.patch

File assert.patch, 492 bytes (added by ryandesign (Ryan Carsten Schmidt), 11 years ago)
  • Source/WebCore/platform/Length.cpp

    old new  
    249249    return isCalculated() && (calculationValue() == o.calculationValue() || *calculationValue() == *o.calculationValue());
    250250}
    251251
    252 struct SameSizeAsLength {
    253     int32_t value;
    254     int32_t metaData;
    255 };
    256 COMPILE_ASSERT(sizeof(Length) == sizeof(SameSizeAsLength), length_should_stay_small);
    257252
    258253} // namespace WebCore