We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bddb3a commit 119b38eCopy full SHA for 119b38e
lib/Macros/Sources/SwiftMacros/SwiftifyImportMacro.swift
@@ -677,14 +677,14 @@ struct CountedOrSizedReturnPointerThunkBuilder: PointerBoundsThunkBuilder {
677
if unsafe _resultValue == nil {
678
return nil
679
} else {
680
- return unsafe \(raw: try cast)(\(raw: startLabel): _resultValue!, count: Int(\(countExpr)))
+ return unsafe \(raw: cast)(\(raw: startLabel): _resultValue!, count: Int(\(countExpr)))
681
}
682
}()
683
"""
684
685
return
686
687
- unsafe \(raw: try cast)(\(raw: startLabel): \(call), count: Int(\(countExpr)))
+ unsafe \(raw: cast)(\(raw: startLabel): \(call), count: Int(\(countExpr)))
688
689
690
0 commit comments