File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
SwiftCompilerSources/Sources Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ extension MutatingContext {
221221 }
222222
223223 func getContextSubstitutionMap( for type: Type ) -> SubstitutionMap {
224- SubstitutionMap ( _bridged. getContextSubstitutionMap ( type. bridged) )
224+ SubstitutionMap ( bridged : _bridged. getContextSubstitutionMap ( type. bridged) )
225225 }
226226
227227 func notifyInstructionsChanged( ) {
Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ extension ApplySite {
182182 }
183183
184184 public var substitutionMap : SubstitutionMap {
185- SubstitutionMap ( bridged. ApplySite_getSubstitutionMap ( ) )
185+ SubstitutionMap ( bridged: bridged . ApplySite_getSubstitutionMap ( ) )
186186 }
187187
188188 public var calleeArgumentConventions : ArgumentConventions {
Original file line number Diff line number Diff line change @@ -592,7 +592,7 @@ final public class BuiltinInst : SingleValueInstruction {
592592 }
593593
594594 public var substitutionMap : SubstitutionMap {
595- SubstitutionMap ( bridged. BuiltinInst_getSubstitutionMap ( ) )
595+ SubstitutionMap ( bridged: bridged . BuiltinInst_getSubstitutionMap ( ) )
596596 }
597597}
598598
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import SILBridging
1515public struct SubstitutionMap {
1616 public let bridged : BridgedSubstitutionMap
1717
18- public init ( _ bridged: BridgedSubstitutionMap ) {
18+ public init ( bridged: BridgedSubstitutionMap ) {
1919 self . bridged = bridged
2020 }
2121
You can’t perform that action at this time.
0 commit comments