mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Merge pull request #71863 from bnbarham/remove-makearrayref
Use the new template deduction guides rather than `makeArrayRef`
This commit is contained in:
@@ -6972,7 +6972,7 @@ bool Parser::parseMemberDeclList(SourceLoc &LBLoc, SourceLoc &RBLoc,
|
||||
ParseMembersRequest{IDC},
|
||||
FingerprintAndMembers{
|
||||
membersAndHash.second,
|
||||
Context.AllocateCopy(llvm::makeArrayRef(membersAndHash.first))});
|
||||
Context.AllocateCopy(llvm::ArrayRef(membersAndHash.first))});
|
||||
|
||||
if (hadError)
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user