From: Behdad Esfahbod Date: Thu, 13 Sep 2018 16:27:20 +0000 (+0200) Subject: [dfont] Minor X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=82f4d776c21b7c1224dd7073ce69cdf76d85f16b;p=platform%2Fupstream%2FlibHarfBuzzSharp.git [dfont] Minor --- diff --git a/src/hb-open-file.hh b/src/hb-open-file.hh index 5cff080..d3e8722 100644 --- a/src/hb-open-file.hh +++ b/src/hb-open-file.hh @@ -305,7 +305,7 @@ struct ResourceRecord } protected: - HBUINT16 id; /* Resource ID, is really should be signed? */ + HBUINT16 id; /* Resource ID. */ HBINT16 nameOffset; /* Offset from beginning of resource name list * to resource name, -1 means there is none. */ HBUINT8 attrs; /* Resource attributes */ @@ -400,7 +400,7 @@ struct ResourceForkHeader { const ResourceMap &resource_map = this+map; unsigned int count = resource_map.get_type_count (); - for (unsigned int i = 0; i < count; ++i) + for (unsigned int i = 0; i < count; i++) { const ResourceTypeRecord& type = resource_map.get_type_record (i); if (type.is_sfnt ()) @@ -421,7 +421,7 @@ struct ResourceForkHeader unsigned int *base_offset = nullptr) const { const ResourceMap &resource_map = this+map; - for (unsigned int i = 0; i < resource_map.get_type_count (); ++i) + for (unsigned int i = 0; i < resource_map.get_type_count (); i++) { const ResourceTypeRecord& type = resource_map.get_type_record (i); if (type.is_sfnt () && idx < type.get_resource_count ())