Skip to content

Commit e16b368

Browse files
Fix Windows build: remove const keyword
1 parent f3c9287 commit e16b368

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/internal/pycore_backoff.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ extern "C" {
4141

4242
// We only use values x and backoffs b such that
4343
// x + 1 is near to 2**(2*b+1) and x + 1 is prime.
44-
static const _Py_BackoffCounter backoff_counter_table[] = {
44+
static _Py_BackoffCounter backoff_counter_table[] = {
4545
MAKE_BACKOFF_COUNTER(1, 0),
4646
MAKE_BACKOFF_COUNTER(6, 1),
4747
MAKE_BACKOFF_COUNTER(30, 2),

0 commit comments

Comments
 (0)