Skip to content

Commit 29f172f

Browse files
committed
Concurrency: Suppress a -Wc++23-extensions warning.
Fixes the following warning: ``` warning: label at end of compound statement is a C++23 extension [-Wc++23-extensions] ```
1 parent 3f626f5 commit 29f172f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

stdlib/public/Concurrency/Actor.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1649,6 +1649,7 @@ static void defaultActorDrain(DefaultActorImpl *actor) {
16491649

16501650
#if SWIFT_CONCURRENCY_ENABLE_PRIORITY_ESCALATION
16511651
done:
1652+
; // Suppress a -Wc++23-extensions warning
16521653
#endif
16531654
}
16541655

0 commit comments

Comments
 (0)