From: Behdad Esfahbod Date: Mon, 17 Jun 2019 21:19:13 +0000 (-0700) Subject: Minor X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6492b2345cd913223b0eb931e9e11f7e5ad33049;p=platform%2Fupstream%2FlibHarfBuzzSharp.git Minor --- diff --git a/src/hb-open-type.hh b/src/hb-open-type.hh index 2991d8e..e235a97 100644 --- a/src/hb-open-type.hh +++ b/src/hb-open-type.hh @@ -146,7 +146,7 @@ struct LONGDATETIME * system, feature, or baseline */ struct Tag : HBUINT32 { - Tag& operator = (uint32_t i) { HBUINT32::operator= (i); return *this; } + Tag& operator = (hb_tag_t i) { HBUINT32::operator= (i); return *this; } /* What the char* converters return is NOT nul-terminated. Print using "%.4s" */ operator const char* () const { return reinterpret_cast (&this->v); } operator char* () { return reinterpret_cast (&this->v); }