We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbfbd41 commit 84a8e5fCopy full SHA for 84a8e5f
stdlib/public/Concurrency/Actor.cpp
@@ -658,8 +658,13 @@ class alignas(sizeof(void *) * 2) ActiveActorStatus {
658
ActiveActorStatus() = default;
659
#endif
660
661
+#if SWIFT_CONCURRENCY_ENABLE_PRIORITY_ESCALATION
662
constexpr ActiveActorStatus()
663
: Flags(), DrainLock(DLOCK_OWNER_NULL), FirstJob(JobRef()) {}
664
+#else
665
+ constexpr ActiveActorStatus()
666
+ : Flags(), FirstJob(JobRef()) {}
667
+#endif
668
669
bool isDistributedRemote() const { return Flags & DistributedRemote; }
670
ActiveActorStatus withDistributedRemote() const {
0 commit comments