From 37eaa5175d3d662aa2fcfc46a96a92b053597a46 Mon Sep 17 00:00:00 2001 From: Bigjango13 Date: Sun, 14 Jan 2024 15:26:30 -0500 Subject: [PATCH] Add address comments for methods and vtables --- src/method.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/method.ts b/src/method.ts index 7dc3aaa..a501877 100644 --- a/src/method.ts +++ b/src/method.ts @@ -31,7 +31,7 @@ export class Method { } // Generate Variable Definition - generateDefinition(showAddress: bool, nameSuffix?: string) { + generateDefinition(nameSuffix?: string) { return `${this.getType()} ${this.getName()}${nameSuffix !== undefined ? nameSuffix : ''}; // ${toHex(this.address)}\n`; } } \ No newline at end of file