commit | 96908b898476ca5d7da5f386b15be76f9e83d76e | [log] [tgz] |
---|---|---|
author | Behdad Esfahbod <behdad@behdad.org> | Sun May 24 12:30:40 2009 -0400 |
committer | Behdad Esfahbod <behdad@behdad.org> | Mon Nov 02 14:40:17 2009 -0500 |
tree | d04f9d3455ed3f3ac902034366a26aeb77db84f1 | |
parent | 957740dd253475020a94a62ec5dfcd03e3358176 [diff] |
[HB] Add FixedVersion cast to int
diff --git a/src/hb-ot-layout-open-private.h b/src/hb-ot-layout-open-private.h index 0955c6f..91aacfc 100644 --- a/src/hb-ot-layout-open-private.h +++ b/src/hb-ot-layout-open-private.h
@@ -293,6 +293,8 @@ struct FixedVersion { + inline operator uint32_t(void) const { return major << 16 + minor; } + SHORT major; USHORT minor; };