Skip to content

Commit 7e7fe9b

Browse files
authored
Remove unused pointerT function. NFC (#17037)
This function was only recently added and its usage was removed in #16130.
1 parent a71d00d commit 7e7fe9b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/parseTools.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -193,10 +193,6 @@ function isPointerType(type) {
193193
return type[type.length - 1] == '*';
194194
}
195195

196-
function pointerT(x) {
197-
return MEMORY64 ? `BigInt(${x})` : x;
198-
}
199-
200196
function isIntImplemented(type) {
201197
return type[0] == 'i' || type[0] == 'u' || isPointerType(type);
202198
}

0 commit comments

Comments
 (0)