@@ -396,7 +396,7 @@ static void singlePayloadEnumGeneric(const Metadata *metadata,
396
396
auto tagBytesAndOffset = reader.readBytes <uint64_t >();
397
397
auto payloadSize = reader.readBytes <size_t >();
398
398
auto *xiType = reader.readBytes <const Metadata *>();
399
- auto numEmptyCases = reader.readBytes <unsigned >();
399
+ ( void ) reader.readBytes <unsigned >();
400
400
auto refCountBytes = reader.readBytes <size_t >();
401
401
auto skip = reader.readBytes <size_t >();
402
402
@@ -616,7 +616,7 @@ static void singlePayloadEnumGeneric(const Metadata *metadata,
616
616
auto tagBytesAndOffset = reader.readBytes <uint64_t >();
617
617
auto payloadSize = reader.readBytes <size_t >();
618
618
auto *xiType = reader.readBytes <const Metadata *>();
619
- auto numEmptyCases = reader.readBytes <unsigned >();
619
+ ( void ) reader.readBytes <unsigned >(); // numEmptyCases
620
620
auto refCountBytes = reader.readBytes <size_t >();
621
621
auto skip = reader.readBytes <size_t >();
622
622
@@ -1655,7 +1655,7 @@ static void singlePayloadEnumGenericAssignWithCopy(const Metadata *metadata,
1655
1655
auto tagBytesAndOffset = reader.readBytes <uint64_t >();
1656
1656
auto payloadSize = reader.readBytes <size_t >();
1657
1657
auto *xiType = reader.readBytes <const Metadata *>();
1658
- auto numEmptyCases = reader.readBytes <unsigned >();
1658
+ ( void ) reader.readBytes <unsigned >(); // numEmptyCases
1659
1659
auto refCountBytes = reader.readBytes <size_t >();
1660
1660
auto skip = reader.readBytes <size_t >();
1661
1661
0 commit comments