Skip to content

Commit

Permalink
Merge pull request #127 from EnaAlogo/patch-2
Browse files Browse the repository at this point in the history
LONG_MAX fix for jitify2
  • Loading branch information
benbarsdell authored Oct 6, 2023
2 parents b42b8cc + fa694ec commit 2a7d754
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jitify2.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3923,7 +3923,7 @@ enum {
#if __WORDSIZE == 64
# define LONG_MAX LLONG_MAX
#else
# define LONG_MAX UINT_MAX
# define LONG_MAX INT_MAX
#endif
#define LONG_MIN (-LONG_MAX - 1)
#if __WORDSIZE == 64
Expand Down

0 comments on commit 2a7d754

Please sign in to comment.