apple / swift-nio-http2

HTTP/2 support for SwiftNIO
https://swiftpackageindex.com/apple/swift-nio-http2/main/documentation/niohttp2
Apache License 2.0
465 stars 82 forks source link

Remove retroactive `CustomDebugStringConvertible` conformance in tests #425

Closed FranzBusch closed 1 year ago

FranzBusch commented 1 year ago

Motivation

We had a retroactive CustomDebugStringConvertible conformance to ByteBufferView in one of our tests harnesses which caused compiler errors in the latest nightlies.

Modification

This PR removes the retroactive conformance.

Result

No more compiler errors.