address a few compiler warnings

This commit is contained in:
Basile Burg 2021-10-08 16:08:00 +02:00
parent 514ffb967a
commit 541ceb240f
5 changed files with 6 additions and 3 deletions

View File

@ -838,7 +838,7 @@ end;
procedure TNativeProject.checkSemantics;
var
i: integer;
s: string;
s: string = '';
d: DCompiler;
begin
i := currentConfiguration.otherOptions.customOptions.Count;

View File

@ -1928,7 +1928,7 @@ var
gdb: string;
i: integer;
b: TPersistentBreakPoint;
o: TDebugeeOption;
o: TDebugeeOption = nil;
const
asmFlavorStr: array[TAsmSyntax] of string = ('intel','att');
begin

View File

@ -118,7 +118,7 @@ end;
procedure TToolInfo.refreshStatus;
var
pth: string;
cmp: DCompiler;
cmp: DCompiler = DCompiler.dmd;
begin
if fLabel.isNotAssigned or fStatus.isNotAssigned then
exit;

View File

@ -372,8 +372,10 @@ begin
end;
destructor TMiniExplorerWidget.destroy;
{$if lcl_fullversion >= 2020000}
var
i: integer;
{$endif}
begin
fMnxSubj.free;

View File

@ -3998,6 +3998,7 @@ end;
function gutterIconKindToColumn(value: TGutterIcon): integer;
begin
result := 0;
case value of
giBreakSet : result := 1;
giBulletGreen : result := 2;