mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-07 11:20:27 +02:00
FPDebug: fixed compile without $DEFINE
git-svn-id: trunk@43950 -
This commit is contained in:
parent
9b076b8abc
commit
ded56dfb04
@ -1968,7 +1968,7 @@ begin
|
||||
if tmp is TPasParserSymbolValueMakeReftype then begin
|
||||
TPasParserSymbolValueMakeReftype(tmp).IncRefLevel;
|
||||
Result := tmp;
|
||||
Result.AddReference{$IFDEF WITH_REFCOUNT_DEBUG}(nil, 'DoGetResultValue');{$ENDIF}
|
||||
Result.AddReference{$IFDEF WITH_REFCOUNT_DEBUG}(nil, 'DoGetResultValue'){$ENDIF};
|
||||
exit;
|
||||
end;
|
||||
|
||||
@ -1976,7 +1976,7 @@ begin
|
||||
exit;
|
||||
|
||||
Result := TPasParserSymbolValueMakeReftype.Create(tmp.DbgSymbol);
|
||||
{$IFDEF WITH_REFCOUNT_DEBUG}Result.DbgRenameReference(nil, 'DoGetResultValue');{$ENDIF}
|
||||
{$IFDEF WITH_REFCOUNT_DEBUG}Result.DbgRenameReference(nil, 'DoGetResultValue'){$ENDIF};
|
||||
end;
|
||||
|
||||
function TFpPascalExpressionPartOperatorMakeRef.DoGetIsTypeCast: Boolean;
|
||||
|
Loading…
Reference in New Issue
Block a user