mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-07 12:10:45 +02:00
* fixed double identifier
git-svn-id: trunk@1836 -
This commit is contained in:
parent
2ec1678cc1
commit
20face432b
@ -30,20 +30,20 @@ var
|
||||
{$include utild2.inc}
|
||||
{$include utilf.inc}
|
||||
|
||||
function TAG(value: pointer): longword; inline;
|
||||
function TAG(value: pchar): longword; inline;
|
||||
function TAG_(value: pointer): longword; inline;
|
||||
function TAG_(value: pchar): longword; inline;
|
||||
|
||||
|
||||
implementation
|
||||
|
||||
function TAG(value: pointer): longword; inline;
|
||||
function TAG_(value: pointer): longword; inline;
|
||||
begin
|
||||
TAG:=longword(value);
|
||||
TAG_:=longword(value);
|
||||
end;
|
||||
|
||||
function TAG(value: pchar): longword; inline;
|
||||
function TAG_(value: pchar): longword; inline;
|
||||
begin
|
||||
TAG:=longword(value);
|
||||
TAG_:=longword(value);
|
||||
end;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user