Skip to content

Commit

Permalink
fix mingw
Browse files Browse the repository at this point in the history
  • Loading branch information
mikir committed Jun 18, 2024
1 parent 936ed7b commit 39119bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class PackedArrayElementParamTest : public ::testing::Test
size_t getUnpackedDatabaseBitSize(uint16_t numBlocks)
{
size_t bitSize = 16; // numBlocks
bitSize += numBlocks * (16 + 32); // headers
bitSize += static_cast<size_t>(numBlocks) * (16 + 32); // headers
for (size_t i = 0; i < numBlocks; ++i)
{
bitSize += 64 + (i + 1) * 64; // blocks[i]
Expand Down

0 comments on commit 39119bf

Please sign in to comment.