We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db62e66 commit 56d9947Copy full SHA for 56d9947
src/utilities.hpp
@@ -34,10 +34,10 @@ typedef uint64_t ulong;
34
#define min_short ((short)-32768)
35
#define max_short ((short)32767)
36
#define max_ushort ((ushort)65535)
37
-#define min_int -2147483648
+#define min_int ((int)-2147483648)
38
#define max_int 2147483647
39
#define max_uint 4294967295u
40
-#define min_slong -9223372036854775808ll
+#define min_slong ((slong)-9223372036854775808ll)
41
#define max_slong 9223372036854775807ll
42
#define max_ulong 18446744073709551615ull
43
#define min_float 1.401298464E-45f
0 commit comments