diff options
Diffstat (limited to 'luaconf.h')
-rw-r--r-- | luaconf.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -87,9 +87,8 @@ | |||
87 | 87 | ||
88 | /* | 88 | /* |
89 | @@ LUAI_IS32INT is true iff 'int' has (at least) 32 bits. | 89 | @@ LUAI_IS32INT is true iff 'int' has (at least) 32 bits. |
90 | ** (the use of two shifts avoids undefined shifts) | ||
91 | */ | 90 | */ |
92 | #define LUAI_IS32INT (((UINT_MAX >> 15) >> 15) >= 3) | 91 | #define LUAI_IS32INT ((UINT_MAX >> 30) >= 3) |
93 | 92 | ||
94 | /* }================================================================== */ | 93 | /* }================================================================== */ |
95 | 94 | ||