mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-25 16:29:20 +02:00
amunits: cast TAG_USER as LongInt. this avoids all constants based on TAG_USER being 64bit, and causing constant range check warnings
git-svn-id: trunk@30988 -
This commit is contained in:
parent
b9aeeae771
commit
5d0dd23ddd
@ -308,7 +308,7 @@ CONST
|
|||||||
TAG_SKIP = 3; { skip this AND the next ti_Data items }
|
TAG_SKIP = 3; { skip this AND the next ti_Data items }
|
||||||
|
|
||||||
{ differentiates user tags from control tags }
|
{ differentiates user tags from control tags }
|
||||||
TAG_USER = $80000000; { differentiates user tags from system tags}
|
TAG_USER = LongInt($80000000); { differentiates user tags from system tags}
|
||||||
|
|
||||||
{* If the TAG_USER bit is set in a tag number, it tells utility.library that
|
{* If the TAG_USER bit is set in a tag number, it tells utility.library that
|
||||||
* the tag is not a control tag (like TAG_DONE, TAG_IGNORE, TAG_MORE) and is
|
* the tag is not a control tag (like TAG_DONE, TAG_IGNORE, TAG_MORE) and is
|
||||||
|
Loading…
Reference in New Issue
Block a user