Skip to content

Commit 2628645

Browse files
committed
llvm::None fix
(cherry picked from commit 03ae003)
1 parent bbfb9b0 commit 2628645

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Sema/TypeCheckConcurrency.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3627,7 +3627,7 @@ static Optional<ActorIsolation> getIsolationFromWrappers(
36273627
if (ctx.LangOpts.hasFeature(Feature::DisableActorInferenceFromPropertyWrapperUsage)) {
36283628
// In Swift 6, we no longer infer isolation of a nominal type
36293629
// based on the property wrappers used in its stored properties
3630-
return None;
3630+
return llvm::None;
36313631
}
36323632

36333633
Optional<ActorIsolation> foundIsolation;

0 commit comments

Comments
 (0)