From: Michiharu Ariza Date: Wed, 5 Dec 2018 08:36:11 +0000 (-0800) Subject: fix unsigned long const X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=620d1ef588c6ce25644891cfe4b9c20fd8a9d1db;p=platform%2Fupstream%2FlibHarfBuzzSharp.git fix unsigned long const --- diff --git a/src/hb-cff-interp-dict-common.hh b/src/hb-cff-interp-dict-common.hh index 2c7a971..005e15e 100644 --- a/src/hb-cff-interp-dict-common.hh +++ b/src/hb-cff-interp-dict-common.hh @@ -115,7 +115,7 @@ struct DictOpSet : OpSet bool exp_overflow = false; enum Part { INT_PART=0, FRAC_PART, EXP_PART } part = INT_PART; enum Nibble { DECIMAL=10, EXP_POS, EXP_NEG, RESERVED, NEG, END }; - const uint64_t MAX_FRACT = 0xFFFFFFFFFFFFFlu; /* 1^52-1 */ + const uint64_t MAX_FRACT = 0xFFFFFFFFFFFFFllu; /* 1^52-1 */ const uint32_t MAX_EXP = 0x7FFu; /* 1^11-1 */ double value = 0.0;