Skip to content

Commit

Permalink
Casting.
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Jan 26, 2023
1 parent 5f73c5e commit 198cac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cpp_unit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1870,7 +1870,7 @@ DEFINE_TEST(test_cpp_remove_run_compression) {
bool test64Deserialize(const std::string& filename) {
std::ifstream in(TEST_DATA_DIR + filename, std::ios::binary);
std::vector<char> buf1(std::istreambuf_iterator<char>(in), {});
printf("Reading %lu bytes\n", buf1.size());
printf("Reading %lu bytes\n", (unsigned long)buf1.size());
Roaring64Map roaring;
#if ROARING_EXCEPTIONS
try {
Expand Down

0 comments on commit 198cac9

Please sign in to comment.