[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:
Behdad Esfahbod 2018-02-26 01:04:16 -08:00
parent f90cd9b1f5
commit 05fbd14e71

View File

@ -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 */