Skip to content

Commit

Permalink
Fix Windows build warning in src/tags_int.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
postscript-dev committed Sep 24, 2022
1 parent 0f00116 commit 7919327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tags_int.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ std::ostream& printTagBitlistAllLE(std::ostream& os, const Value& value, const E

uint32_t vN = 0;
uint32_t currentVNBit = 0;
auto lastArrayPos = 0; // Prevents unneeded searching of array
size_t lastArrayPos = 0; // Prevents unneeded searching of array
constexpr auto maxArrayBit = (array + N - 1)->first;
auto allVNZero = true;
auto useSep = false;
Expand Down

0 comments on commit 7919327

Please sign in to comment.