-
-
Notifications
You must be signed in to change notification settings - Fork 375
Closed
Description
I'm compiling a project in ubuntu linux and the error that I put in the title on the line below:
LogD ('Registering TypeSerializer for:' + string (ATypeInfo.Name))
I did the correction as per the code below
procedure TMVCAbstractSerializer.RegisterTypeSerializer(const ATypeInfo: PTypeInfo; AInstance: IMVCTypeSerializer);
begin
{$IFNDEF AUTOREFCOUNT}
LogD('Registering TypeSerializer for: ' + string(ATypeInfo.Name));
{$ELSE}
LogD('Registering TypeSerializer for: ' + ATypeInfo.Name.ToString);
{$ENDIF}
FTypeSerializers.AddOrSetValue(ATypeInfo, AInstance);
end;
Metadata
Metadata
Assignees
Labels
No labels