git2pas: Removed unneeded conditional compilation flag.

This allows having the same code compiled for both Windows and Linux.
This commit is contained in:
Abou Al Montacir 2023-06-18 20:09:19 +02:00
parent 127e7afbec
commit 25b8bc2160

View File

@ -873,11 +873,11 @@ end;
function TPascalUnit.cExternal(const cName: String = ''): String;
begin
Result := ' external {$ifdef MsWindows} ' + UnitName + '_library';
Result := ' external ' + UnitName + '_library';
if cName <> '' then begin
Result += ' name ''' + cName + '''';
end;
Result += ' {$endif};';
Result += ';';
end;
function TPascalUnit.WantTypeSection: TPDeclarationType;