WTF::ThreadSafeWeakPtrControlBlock::strongDeref() should use constexpr. While working on another patch, I realized that WTF::ThreadSafeWeakPtrControlBlock::strongDeref() could use constexpr instead of a switch statement. The switch statement is kept in Debug builds in case an enum value is added to DestructionThread.
<rdar://problem/105143972>
Pull request: https://github.com/WebKit/WebKit/pull/9779
Alex notes that the switch statement is already optimized out, so the constexpr isn't needed.