@@ -1278,6 +1278,16 @@ public struct Fuzzilli_Protobuf_TypeOf: Sendable {
12781278 public init ( ) { }
12791279}
12801280
1281+ public struct Fuzzilli_Protobuf_Void : Sendable {
1282+ // SwiftProtobuf.Message conformance is added in an extension below. See the
1283+ // `Message` and `Message+*Additions` files in the SwiftProtobuf library for
1284+ // methods supported on all messages.
1285+
1286+ public var unknownFields = SwiftProtobuf . UnknownStorage ( )
1287+
1288+ public init ( ) { }
1289+ }
1290+
12811291public struct Fuzzilli_Protobuf_TestInstanceOf : Sendable {
12821292 // SwiftProtobuf.Message conformance is added in an extension below. See the
12831293 // `Message` and `Message+*Additions` files in the SwiftProtobuf library for
@@ -4885,6 +4895,25 @@ extension Fuzzilli_Protobuf_TypeOf: SwiftProtobuf.Message, SwiftProtobuf._Messag
48854895 }
48864896}
48874897
4898+ extension Fuzzilli_Protobuf_Void : SwiftProtobuf . Message , SwiftProtobuf . _MessageImplementationBase , SwiftProtobuf . _ProtoNameProviding {
4899+ public static let protoMessageName : String = _protobuf_package + " .Void "
4900+ public static let _protobuf_nameMap = SwiftProtobuf . _NameMap ( )
4901+
4902+ public mutating func decodeMessage< D: SwiftProtobuf . Decoder > ( decoder: inout D ) throws {
4903+ while let _ = try decoder. nextFieldNumber ( ) {
4904+ }
4905+ }
4906+
4907+ public func traverse< V: SwiftProtobuf . Visitor > ( visitor: inout V ) throws {
4908+ try unknownFields. traverse ( visitor: & visitor)
4909+ }
4910+
4911+ public static func == ( lhs: Fuzzilli_Protobuf_Void , rhs: Fuzzilli_Protobuf_Void ) -> Bool {
4912+ if lhs. unknownFields != rhs. unknownFields { return false }
4913+ return true
4914+ }
4915+ }
4916+
48884917extension Fuzzilli_Protobuf_TestInstanceOf : SwiftProtobuf . Message , SwiftProtobuf . _MessageImplementationBase , SwiftProtobuf . _ProtoNameProviding {
48894918 public static let protoMessageName : String = _protobuf_package + " .TestInstanceOf "
48904919 public static let _protobuf_nameMap = SwiftProtobuf . _NameMap ( )
0 commit comments