Skip to content

Commit

Permalink
Fix #2
Browse files Browse the repository at this point in the history
- Add reliable check for 64-bit without configure script
  • Loading branch information
detomon committed Dec 29, 2020
1 parent 7b9c9af commit e5ccdaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BKBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ extern char const * const BKVersion;
/**
* Settings
*/
#if SIZEOF_SIZE_T == 8
#if INTPTR_MAX == INT64_MAX
#define BK_IS_64_BIT 1
#else
#define BK_IS_64_BIT 0
Expand Down

0 comments on commit e5ccdaa

Please sign in to comment.