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.
2 parents d369ce1 + e6b140e commit a373e85Copy full SHA for a373e85
include/swift/Runtime/Concurrent.h
@@ -668,7 +668,7 @@ template <class ElemTy> struct ConcurrentReadableHashMap {
668
case sizeof(uint32_t):
669
return (&IndexZero32)[i].load(order);
670
default:
671
- swift_runtime_unreachable("unknown index size");
+ swift_unreachable("unknown index size");
672
}
673
674
@@ -683,7 +683,7 @@ template <class ElemTy> struct ConcurrentReadableHashMap {
683
684
return (&IndexZero32)[i].store(value, order);
685
686
687
688
689
};
0 commit comments