Skip to content

Commit

Permalink
Fix compatibility with old GCCs on 64-bit OSes.
Browse files Browse the repository at this point in the history
  • Loading branch information
FGasper committed Dec 2, 2023
1 parent 03cc5ec commit f02980e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libbf.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include <stddef.h>
#include <stdint.h>

#if INTPTR_MAX >= INT64_MAX
#if defined(__SIZEOF_INT128__) && (INTPTR_MAX >= INT64_MAX)
#define LIMB_LOG2_BITS 6
#else
#define LIMB_LOG2_BITS 5
Expand Down

0 comments on commit f02980e

Please sign in to comment.