silence gcc

This commit is contained in:
Michiharu Ariza 2018-08-03 15:00:37 -07:00
parent 00970dd242
commit cc3f4e00aa
1 changed files with 4 additions and 4 deletions

View File

@ -68,7 +68,7 @@ struct CFF2TopDictValues : DictValues<OpStr>
{
inline void init (void)
{
DictValues::init ();
DictValues<OpStr>::init ();
charStringsOffset.set (0);
vstoreOffset.set (0);
FDArrayOffset.set (0);
@ -77,7 +77,7 @@ struct CFF2TopDictValues : DictValues<OpStr>
inline void fini (void)
{
DictValues::fini ();
DictValues<OpStr>::fini ();
FontMatrix[0] = FontMatrix[3] = 0.001f;
FontMatrix[1] = FontMatrix[2] = FontMatrix[4] = FontMatrix[5] = 0.0f;
}
@ -159,14 +159,14 @@ struct CFF2FontDictValues : DictValues<OpStr>
{
inline void init (void)
{
DictValues::init ();
DictValues<OpStr>::init ();
privateDictSize = 0;
privateDictOffset.set (0);
}
inline void fini (void)
{
DictValues::fini ();
DictValues<OpStr>::fini ();
}
unsigned int privateDictSize;