* set CObjData in the TWasmExeOutput constructor

This commit is contained in:
Nikolay Nikolov 2023-12-24 12:35:50 +02:00
parent 0f8ecb73e7
commit 6bead20fc3

View File

@ -197,6 +197,8 @@ interface
protected
function writeData:boolean;override;
procedure DoRelocationFixup(objsec:TObjSection);override;
public
constructor create;override;
end;
{ TWasmAssembler }
@ -2221,6 +2223,12 @@ implementation
{TODO: implement}
end;
constructor TWasmExeOutput.create;
begin
inherited create;
CObjData:=TWasmObjData;
end;
{****************************************************************************
TWasmAssembler