Skip to content

Commit 26f05b0

Browse files
authored
Update Helpers.cpp
1 parent 7bb2c1c commit 26f05b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

QPFloat/Helpers.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ i32 ReverseBitScan( ui32* a, byte longCount, i32 startingBit )
8181
return -1;
8282
}
8383

84-
ui64 computeMask( i32 bitOffset, byte bitCount )
84+
ui64 ComputeMask( i32 bitOffset, byte bitCount )
8585
{
8686
if (bitCount > 64) bitCount = 64;
8787
if (bitCount == 64)
@@ -255,7 +255,7 @@ void BitBlockTransfer(const void* _source, int sourceBitOffset, void* _destinati
255255
memcpy(&workingBuffer, destination, outBytes);
256256

257257
//use a mask to clear the bits in the working buffer that we will overwrite
258-
ui64 mask = computeMask(dstShift, (byte)bitCount);
258+
ui64 mask = ComputeMask(dstShift, (byte)bitCount);
259259
workingBuffer &= ~mask;
260260

261261
//read bytes from source into a value buffer

0 commit comments

Comments
 (0)