Skip to content

Commit

Permalink
msvc doesn't support for __int128
Browse files Browse the repository at this point in the history
  • Loading branch information
lygstate committed Feb 16, 2021
1 parent 710ac60 commit c3181c4
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 INTPTR_MAX >= INT64_MAX && !defined(_MSC_VER)
#define LIMB_LOG2_BITS 6
#else
#define LIMB_LOG2_BITS 5
Expand Down

0 comments on commit c3181c4

Please sign in to comment.