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 9f064b5 commit 0782b24Copy full SHA for 0782b24
lib/mod.ts
@@ -2914,8 +2914,8 @@ export class CXCursor {
2914
libclang.symbols.clang_getOverriddenCursors(this.#buffer, OUT, OUT_2);
2915
const length = out32[0];
2916
const cursors: CXCursor[] = [];
2917
- const overriddenCursorsPointerValue = Number(OUT_64[0]);
2918
- if (length === 0 || overriddenCursorsPointerValue === 0) {
+ const overriddenCursorsPointerValue = OUT_64[0];
+ if (length === 0 || overriddenCursorsPointerValue === 0n) {
2919
return cursors;
2920
}
2921
const overriddenCursorsPointer = Deno.UnsafePointer.create(
0 commit comments