Minor
This commit is contained in:
parent
6562172381
commit
e8ff27c208
|
@ -539,8 +539,10 @@ template <typename Type> struct LArrayOf : ArrayOf<Type, HBUINT32> {};
|
|||
typedef ArrayOf<HBUINT8, HBUINT8> PString;
|
||||
|
||||
/* Array of Offset's */
|
||||
template <typename Type, typename OffsetType=HBUINT16>
|
||||
struct OffsetArrayOf : ArrayOf<OffsetTo<Type, OffsetType> > {};
|
||||
template <typename Type>
|
||||
struct OffsetArrayOf : ArrayOf<OffsetTo<Type, HBUINT16> > {};
|
||||
template <typename Type>
|
||||
struct LOffsetArrayOf : ArrayOf<OffsetTo<Type, HBUINT32> > {};
|
||||
template <typename Type>
|
||||
struct LOffsetLArrayOf : ArrayOf<OffsetTo<Type, HBUINT32>, HBUINT32> {};
|
||||
|
||||
|
|
|
@ -1605,7 +1605,7 @@ struct VariationStore
|
|||
protected:
|
||||
HBUINT16 format;
|
||||
LOffsetTo<VarRegionList> regions;
|
||||
OffsetArrayOf<VarData, HBUINT32> dataSets;
|
||||
LOffsetArrayOf<VarData> dataSets;
|
||||
public:
|
||||
DEFINE_SIZE_ARRAY (8, dataSets);
|
||||
};
|
||||
|
@ -1687,7 +1687,7 @@ struct ConditionSet
|
|||
}
|
||||
|
||||
protected:
|
||||
OffsetArrayOf<Condition, HBUINT32> conditions;
|
||||
LOffsetArrayOf<Condition> conditions;
|
||||
public:
|
||||
DEFINE_SIZE_ARRAY (2, conditions);
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue