File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Sources/SwiftDocC/Infrastructure/External Data Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -586,7 +586,11 @@ private class LongRunningProcess: ExternalLinkResolving {
586
586
fatalError ( " Cannot initialize an out of process resolver outside of macOS or Linux platforms. " )
587
587
}
588
588
589
- func sendAndWait< Request: Codable & CustomStringConvertible , Response: Codable > ( request: Request ? ) throws -> Response {
589
+ func readInitialHandshakeMessage< Response: Decodable > ( ) throws -> Response {
590
+ fatalError ( " Cannot call sendAndWait in non macOS/Linux platform. " )
591
+ }
592
+
593
+ func sendAndWait< Request: Codable , Response: Codable > ( request: Request ) throws -> Response {
590
594
fatalError ( " Cannot call sendAndWait in non macOS/Linux platform. " )
591
595
}
592
596
You can’t perform that action at this time.
0 commit comments