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 da65626 commit a8cc312Copy full SHA for a8cc312
include/swift/Basic/FixedBitSet.h
@@ -78,7 +78,7 @@ class FixedBitSet {
78
static size_t chunkIndex(ValueType i) {
79
return size_t(i) / chunkSize;
80
}
81
- static size_t chunkMask(ValueType i) {
+ static ChunkType chunkMask(ValueType i) {
82
return ChunkType(1) << (size_t(i) % chunkSize);
83
84
0 commit comments