mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-12 17:39:18 +02:00
Fix Compile / missing semicolon
This commit is contained in:
parent
ee5d8465bb
commit
92b6ded394
@ -9701,7 +9701,7 @@ var
|
||||
if not IsEnd then
|
||||
AliasType:=Nil;
|
||||
ExprType:=FindExpressionTypeOfPredefinedIdentifier(CurAtom.StartPos,
|
||||
Params,AliasType)
|
||||
Params,AliasType);
|
||||
{$IFDEF CheckNodeTool}
|
||||
if ExprType.Desc=xtContext then
|
||||
ExprType.Context.Tool.CheckNodeTool(ExprType.Context.Node);
|
||||
|
@ -4577,7 +4577,7 @@ begin
|
||||
exit;
|
||||
|
||||
{$PUSH}{$R-}{$Q-}
|
||||
Result := TFpValueConstNumber.Create(AVal >> AShift, False)
|
||||
Result := TFpValueConstNumber.Create(AVal >> AShift, False);
|
||||
{$POP}
|
||||
|
||||
{$IFDEF WITH_REFCOUNT_DEBUG}if Result <> nil then Result.DbgRenameReference(nil, 'DoGetResultValue');{$ENDIF}
|
||||
@ -4594,7 +4594,7 @@ begin
|
||||
exit;
|
||||
|
||||
{$PUSH}{$R-}{$Q-}
|
||||
Result := TFpValueConstNumber.Create(AVal << AShift, False)
|
||||
Result := TFpValueConstNumber.Create(AVal << AShift, False);
|
||||
{$POP}
|
||||
|
||||
{$IFDEF WITH_REFCOUNT_DEBUG}if Result <> nil then Result.DbgRenameReference(nil, 'DoGetResultValue');{$ENDIF}
|
||||
|
Loading…
Reference in New Issue
Block a user