mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 05:38:25 +02:00
git2pas: Removed unneeded conditional compilation flag.
This allows having the same code compiled for both Windows and Linux.
This commit is contained in:
parent
127e7afbec
commit
25b8bc2160
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user