* undo 43513 which ifdefed usage of ismanagedtype for 3.2. 3.2 now supports ismanagedtype

git-svn-id: trunk@43971 -
This commit is contained in:
marco 2020-01-18 15:17:02 +00:00
parent de7c03bd42
commit 37a8536bd4

View File

@ -970,11 +970,7 @@ end;
class function TFPGList.ItemIsManaged: Boolean;
begin
{$IFNDEF VER3_0}
{$IFNDEF VER3_2}
Result:=IsManagedType(T);
{$ELSE}
Result:=True; // Fallback to old behaviour
{$ENDIF}
{$ELSE}
Result:=True; // Fallback to old behaviour
{$ENDIF}