Change bitMask return type to wordType

This commit is contained in:
Andrew Noyes 2019-12-05 15:03:04 -08:00
parent 604351680b
commit 4263a17188
1 changed files with 1 additions and 1 deletions

View File

@ -1035,7 +1035,7 @@ class MiniConflictSet : NonCopyable {
std::vector<wordType> andValues;
MiniConflictSet2 debug; // SOMEDAY: Test on big ranges, eliminate this
uint64_t bitMask(unsigned int bit){ // computes results for bit%word
wordType bitMask(unsigned int bit) { // computes results for bit%word
return (((wordType)1) << (bit & bucketMask));
}
void setNthBit(std::vector<wordType>& v, const unsigned int bit){