[kern] See if this helps with making VS bot happy
This commit is contained in:
parent
2c439210c9
commit
49c0f35580
|
@ -192,13 +192,13 @@ struct KernTable
|
||||||
|
|
||||||
struct KernOT : KernTable<KernOT>
|
struct KernOT : KernTable<KernOT>
|
||||||
{
|
{
|
||||||
friend struct KernTable;
|
friend struct KernTable<KernOT>;
|
||||||
|
|
||||||
static const uint16_t VERSION = 0x0000u;
|
static const uint16_t VERSION = 0x0000u;
|
||||||
|
|
||||||
struct SubTableWrapper : KernSubTableWrapper<SubTableWrapper>
|
struct SubTableWrapper : KernSubTableWrapper<SubTableWrapper>
|
||||||
{
|
{
|
||||||
friend struct KernSubTableWrapper;
|
friend struct KernSubTableWrapper<SubTableWrapper>;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
USHORT versionZ; /* Unused. */
|
USHORT versionZ; /* Unused. */
|
||||||
|
@ -220,13 +220,13 @@ struct KernOT : KernTable<KernOT>
|
||||||
|
|
||||||
struct KernAAT : KernTable<KernAAT>
|
struct KernAAT : KernTable<KernAAT>
|
||||||
{
|
{
|
||||||
friend struct KernTable;
|
friend struct KernTable<KernAAT>;
|
||||||
|
|
||||||
static const uint32_t VERSION = 0x00010000u;
|
static const uint32_t VERSION = 0x00010000u;
|
||||||
|
|
||||||
struct SubTableWrapper : KernSubTableWrapper<SubTableWrapper>
|
struct SubTableWrapper : KernSubTableWrapper<SubTableWrapper>
|
||||||
{
|
{
|
||||||
friend struct KernSubTableWrapper;
|
friend struct KernSubTableWrapper<SubTableWrapper>;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
ULONG length; /* Length of the subtable (including this header). */
|
ULONG length; /* Length of the subtable (including this header). */
|
||||||
|
|
Loading…
Reference in New Issue