From a5896f074b1dbf90c819db7824242b3e6daee657 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Fri, 8 Sep 2017 15:25:44 -0700 Subject: [PATCH] Bug 1380980 - stylo: Add (unused) absolute offset to FontComputationData; r=emilio MozReview-Commit-ID: EqtIs2NDm5g --- layout/style/ServoTypes.h | 1 + 1 file changed, 1 insertion(+) diff --git a/layout/style/ServoTypes.h b/layout/style/ServoTypes.h index 63c3660bf2c3..e76c690dcf6f 100644 --- a/layout/style/ServoTypes.h +++ b/layout/style/ServoTypes.h @@ -158,6 +158,7 @@ enum ServoKeywordSize { struct ServoFontComputationData { ServoKeywordSize mKeyword; float/*32_t*/ mRatio; + int32_t mAbsolute; static_assert(sizeof(float) == 4, "float should be 32 bit"); };