mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 10:07:54 +02:00
* handle_calling_convention is only needed for a function reference used in a record/class/object when it's an anonymous one
This commit is contained in:
parent
c43f671baa
commit
d1d0afe337
@ -1861,9 +1861,9 @@ implementation
|
||||
|
||||
{ Add calling convention for procvar }
|
||||
if (
|
||||
(hdef.typ=procvardef) and
|
||||
(hdef.typesym=nil)
|
||||
) or is_funcref(hdef) then
|
||||
(hdef.typ=procvardef) or
|
||||
is_funcref(hdef)
|
||||
) and (hdef.typesym=nil) then
|
||||
begin
|
||||
if (hdef.typ=procvardef) and (po_is_function_ref in tprocvardef(hdef).procoptions) then
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user