Skip to content

Commit

Permalink
#133: refactor: Remove detection logic subsumed by SIZE_MAX checks
Browse files Browse the repository at this point in the history
Resolves #133.
  • Loading branch information
BurningEnlightenment authored and aklomp committed Jan 8, 2024
1 parent 7de32f7 commit 83ca527
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lib/env.h
Expand Up @@ -48,10 +48,6 @@
#if defined (__x86_64__)
// This also works for the x32 ABI, which has a 64-bit word size.
# define BASE64_WORDSIZE 64
#elif defined (__WORDSIZE)
# define BASE64_WORDSIZE __WORDSIZE
#elif defined (__SIZE_WIDTH__)
# define BASE64_WORDSIZE __SIZE_WIDTH__
#elif SIZE_MAX == UINT32_MAX
# define BASE64_WORDSIZE 32
#elif SIZE_MAX == UINT64_MAX
Expand Down

0 comments on commit 83ca527

Please sign in to comment.