|
@@ -695,7 +695,11 @@ begin
|
|
LContext := TRttiContext.Create;
|
|
LContext := TRttiContext.Create;
|
|
|
|
|
|
LType := LContext.GetType(TypeInfo(integer));
|
|
LType := LContext.GetType(TypeInfo(integer));
|
|
|
|
+{$ifdef fpc}
|
|
CheckEquals(LType.Name, 'LongInt');
|
|
CheckEquals(LType.Name, 'LongInt');
|
|
|
|
+{$else}
|
|
|
|
+ CheckEquals(LType.Name, 'Integer');
|
|
|
|
+{$endif}
|
|
|
|
|
|
LContext.Free;
|
|
LContext.Free;
|
|
end;
|
|
end;
|