Skip to content

Commit d516c93

Browse files
authored
Merge pull request #19300 from compnerd/explicit-implicit-conversion
2 parents 71f6e93 + 30e70ca commit d516c93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/swift/SILOptimizer/Analysis/ARCAnalysis.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ class ConsumedArgToEpilogueReleaseMatcher {
230230
Optional<ArrayRef<SILInstruction *>> getFullyPostDomReleases() const {
231231
if (releases.empty() || foundSomeButNotAllReleases())
232232
return None;
233-
return {releases};
233+
return ArrayRef<SILInstruction *>{releases};
234234
}
235235

236236
/// If we were able to find a set of releases for this argument, but those

0 commit comments

Comments
 (0)