-
-
Notifications
You must be signed in to change notification settings - Fork 324
Closed
Description
varInteger: Result := PyLong_FromLong( DeRefV );
varInt64: Result := PyLong_FromLongLong( DeRefV );
FPC shows error here-- DeRefV is Variant, but it wants NativeInt (ie C_Long on linux x64). I added typecast to LongInt and now its ok.
varInteger: Result := PyLong_FromLong( LongInt(DeRefV) );
Metadata
Metadata
Assignees
Labels
No labels