[aat/ankr] Minor
DEFINE_SIZE_MIN is to be used only in rare cases. For fixed-size structs we want DEFINE_SIZE_STATIC.
This commit is contained in:
parent
f90cd9b1f5
commit
05fbd14e71
|
@ -57,7 +57,7 @@ struct ankr
|
||||||
anchors; /* Offset to the glyph data table */
|
anchors; /* Offset to the glyph data table */
|
||||||
|
|
||||||
public:
|
public:
|
||||||
DEFINE_SIZE_MIN (12);
|
DEFINE_SIZE_STATIC (12);
|
||||||
};
|
};
|
||||||
|
|
||||||
} /* namespace AAT */
|
} /* namespace AAT */
|
||||||
|
|
Loading…
Reference in New Issue