mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-19 09:09:32 +02:00
codetools: added dbgs overload for qword
git-svn-id: trunk@12677 -
This commit is contained in:
parent
7a6eecdba3
commit
41008134a5
@ -258,6 +258,7 @@ procedure DbgOut(const s1,s2,s3,s4,s5,s6: string);
|
||||
function DbgS(const c: char): string; overload;
|
||||
function DbgS(const c: cardinal): string; overload;
|
||||
function DbgS(const i: integer): string; overload;
|
||||
function DbgS(const i: QWord): string; overload;
|
||||
function DbgS(const i: int64): string; overload;
|
||||
function DbgS(const r: TRect): string; overload;
|
||||
function DbgS(const p: TPoint): string; overload;
|
||||
@ -2022,6 +2023,11 @@ begin
|
||||
Result:=IntToStr(i);
|
||||
end;
|
||||
|
||||
function DbgS(const i: QWord): string;
|
||||
begin
|
||||
Result:=IntToStr(i);
|
||||
end;
|
||||
|
||||
function DbgS(const i: int64): string;
|
||||
begin
|
||||
Result:=IntToStr(i);
|
||||
|
Loading…
Reference in New Issue
Block a user