From: Behdad Esfahbod Date: Wed, 16 Aug 2017 00:12:21 +0000 (-0700) Subject: Fix warning about "may be used uninitialized" X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8820ba29dfd2e1302377da62a0527939a0d7d9fb;p=platform%2Fupstream%2FlibHarfBuzzSharp.git Fix warning about "may be used uninitialized" --- diff --git a/src/hb-ot-layout-common-private.hh b/src/hb-ot-layout-common-private.hh index 180e5f08..578d850c 100644 --- a/src/hb-ot-layout-common-private.hh +++ b/src/hb-ot-layout-common-private.hh @@ -941,7 +941,7 @@ struct Coverage } struct Iter { - Iter (void) : format (0) {}; + Iter (void) : format (0), u () {}; inline void init (const Coverage &c_) { format = c_.u.format; switch (format) { @@ -982,8 +982,8 @@ struct Coverage private: unsigned int format; union { + CoverageFormat2::Iter format2; /* Put this one first since it's larger; helps shut up compiler. */ CoverageFormat1::Iter format1; - CoverageFormat2::Iter format2; } u; };