Skip to content

Commit aad76fb

Browse files
committed
remove rolling_crc32 default args in definition
1 parent c016d14 commit aad76fb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

auth.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2646,7 +2646,7 @@ static bool get_text_section_info(std::uintptr_t& base, size_t& size)
26462646
return false;
26472647
}
26482648

2649-
static uint32_t rolling_crc32(const uint8_t* data, size_t len, size_t window = 64, size_t stride = 16)
2649+
static uint32_t rolling_crc32(const uint8_t* data, size_t len, size_t window, size_t stride)
26502650
{
26512651
if (!data || len < window)
26522652
return 0;

0 commit comments

Comments
 (0)