BASE: align member's names

This commit is contained in:
Elie Roux 2017-02-25 17:08:01 +01:00
parent 499b4bef2a
commit bd15567ed6
1 changed files with 35 additions and 35 deletions

View File

@ -326,7 +326,7 @@ struct BASEFormat1_1
}
protected:
FixedVersion<>version;
FixedVersion<> version;
OffsetTo<Axis> horizAxis;
OffsetTo<Axis> vertAxis;
LOffsetTo<VariationStore> itemVarStore;
@ -347,7 +347,7 @@ struct BASEFormat1_0
}
protected:
FixedVersion<>version;
FixedVersion<> version;
OffsetTo<Axis> horizAxis;
OffsetTo<Axis> vertAxis;
@ -373,7 +373,7 @@ struct BASE
protected:
union {
FixedVersion<>version; /* Version of the BASE table: 1.0 or 1.1 */
FixedVersion<> version; /* Version of the BASE table: 1.0 or 1.1 */
BASEFormat1_0 format1_0;
BASEFormat1_1 format1_1;
} u;