mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 23:09:40 +02:00
- disabled RecordRTTI declaration on the JVM target, because that
routine is not necessary/implemented there and hence doesn't exist git-svn-id: trunk@23323 -
This commit is contained in:
parent
4ea78538e4
commit
1355fc0198
@ -29,9 +29,9 @@ Procedure int_Addref (Data,TypeInfo : Pointer); [external name 'FPC_ADDREF'];
|
||||
Procedure int_Initialize (Data,TypeInfo: Pointer); [external name 'FPC_INITIALIZE'];
|
||||
procedure int_FinalizeArray(data,typeinfo : pointer;count : longint); [external name 'FPC_FINALIZE_ARRAY'];
|
||||
|
||||
{$ifdef FPC_HAS_FEATURE_RTTI}
|
||||
{$if defined(FPC_HAS_FEATURE_RTTI) and not defined(cpujvm)}
|
||||
type
|
||||
TRTTIProc=procedure(Data,TypeInfo:Pointer);
|
||||
|
||||
procedure RecordRTTI(Data,TypeInfo:Pointer;rttiproc:TRTTIProc); forward;
|
||||
{$endif FPC_HAS_FEATURE_RTTI}
|
||||
{$endif FPC_HAS_FEATURE_RTTI and not cpujvm}
|
||||
|
Loading…
Reference in New Issue
Block a user