@@ -2730,7 +2730,7 @@ static SILFunction *getOrCreateKeyPathGetter(SILGenModule &SGM,
2730
2730
auto param = GenericTypeParamType::get (0 , 0 , SGM.getASTContext ());
2731
2731
auto sig = GenericSignature::get (param, { });
2732
2732
genericSig = CanGenericSignature (sig);
2733
- genericEnv = sig-> getGenericEnvironment ();
2733
+ genericEnv = sig. getGenericEnvironment ();
2734
2734
}
2735
2735
2736
2736
// Build the signature of the thunk as expected by the keypath runtime.
@@ -2881,7 +2881,7 @@ static SILFunction *getOrCreateKeyPathSetter(SILGenModule &SGM,
2881
2881
auto param = GenericTypeParamType::get (0 , 0 , SGM.getASTContext ());
2882
2882
auto sig = GenericSignature::get (param, { });
2883
2883
genericSig = CanGenericSignature (sig);
2884
- genericEnv = sig-> getGenericEnvironment ();
2884
+ genericEnv = sig. getGenericEnvironment ();
2885
2885
}
2886
2886
2887
2887
// Build the signature of the thunk as expected by the keypath runtime.
@@ -3064,7 +3064,7 @@ getOrCreateKeyPathEqualsAndHash(SILGenModule &SGM,
3064
3064
auto param = GenericTypeParamType::get (0 , 0 , SGM.getASTContext ());
3065
3065
auto sig = GenericSignature::get (param, { });
3066
3066
genericSig = CanGenericSignature (sig);
3067
- genericEnv = sig-> getGenericEnvironment ();
3067
+ genericEnv = sig. getGenericEnvironment ();
3068
3068
}
3069
3069
3070
3070
auto &C = SGM.getASTContext ();
0 commit comments