We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b87d6bc commit 08d16ddCopy full SHA for 08d16dd
src/implementation/c/constants.ts
@@ -27,7 +27,6 @@ SIGNED_LIMITS.set('i64', [ '(-0x7fffffffffffffffLL - 1)',
27
28
export const UNSIGNED_LIMITS: Map<string, [ string, string ]> = new Map();
29
UNSIGNED_LIMITS.set('i8', [ '0', '0xff' ]);
30
-UNSIGNED_LIMITS.set('i8', [ '0', '0xff' ]);
31
UNSIGNED_LIMITS.set('i16', [ '0', '0xffff' ]);
32
UNSIGNED_LIMITS.set('i32', [ '0', '0xffffffff' ]);
33
UNSIGNED_LIMITS.set('i64', [ '0ULL', '0xffffffffffffffffULL' ]);
0 commit comments