* fixed for cpu's where real = extended (= double)

git-svn-id: trunk@1581 -
This commit is contained in:
Jonas Maebe 2005-10-23 17:07:58 +00:00
parent 5907f99b6a
commit fa8119280b

View File

@ -21,11 +21,14 @@ Var
B.A := V;
End;
{$ifdef FPC_HAS_TYPE_EXTENDED}
{ otherwise extended = real = double }
Operator := (V : Extended) B : TMoo;
Begin
B:=TMoo.Create;
B.A := V;
End;
{$endif FPC_HAS_TYPE_EXTENDED}
Constructor TMoo.Init;
Begin