mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-02 21:07:21 +01:00
* ngenutil.tnodeutils.sym_maybe_initialize: don't use "is" operator, but corresponding is_* functions
git-svn-id: trunk@36617 -
This commit is contained in:
parent
6006c6a8bd
commit
a301bf75ea
@ -328,11 +328,8 @@ implementation
|
||||
which might contain record with management operators }
|
||||
((tsym(p).typ = staticvarsym) and
|
||||
(
|
||||
(tabstractvarsym(p).vardef is trecorddef) or
|
||||
(
|
||||
(tabstractvarsym(p).vardef is tobjectdef) and
|
||||
(tobjectdef(tabstractvarsym(p).vardef).objecttype = odt_object)
|
||||
)
|
||||
is_record(tabstractvarsym(p).vardef) or
|
||||
is_object(tabstractvarsym(p).vardef)
|
||||
)
|
||||
)
|
||||
) and
|
||||
|
||||
Loading…
Reference in New Issue
Block a user