Skip to content

Commit 745cf50

Browse files
authored
Merge pull request swiftlang#58552 from CodaFi/templatize-me-capn
Remove Needless Template Dependent Access
2 parents dd95257 + c30333a commit 745cf50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/swift/Reflection/TypeRef.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ class GenericSignatureRef final {
760760
create(Allocator &A,
761761
llvm::ArrayRef<const GenericTypeParameterTypeRef *> Params,
762762
llvm::ArrayRef<TypeRefRequirement> Requirements) {
763-
return A.template makeGenericSignatureRef(Params, Requirements);
763+
return A.makeGenericSignatureRef(Params, Requirements);
764764
}
765765

766766
const llvm::ArrayRef<const GenericTypeParameterTypeRef *> getParams() const {

0 commit comments

Comments
 (0)