Skip to content

Commit 08d16dd

Browse files
authored
fix: remove duplicated line (#63)
1 parent b87d6bc commit 08d16dd

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/implementation/c/constants.ts

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ SIGNED_LIMITS.set('i64', [ '(-0x7fffffffffffffffLL - 1)',
2727

2828
export const UNSIGNED_LIMITS: Map<string, [ string, string ]> = new Map();
2929
UNSIGNED_LIMITS.set('i8', [ '0', '0xff' ]);
30-
UNSIGNED_LIMITS.set('i8', [ '0', '0xff' ]);
3130
UNSIGNED_LIMITS.set('i16', [ '0', '0xffff' ]);
3231
UNSIGNED_LIMITS.set('i32', [ '0', '0xffffffff' ]);
3332
UNSIGNED_LIMITS.set('i64', [ '0ULL', '0xffffffffffffffffULL' ]);

0 commit comments

Comments
 (0)