* Applied

This commit is contained in:
daniel 2004-02-20 11:01:20 +00:00
parent 3e69877222
commit 173d1a2554
2 changed files with 24 additions and 2 deletions

View File

@ -238,6 +238,18 @@ end;
{ Include generic version }
{$I genmath.inc}
operator ** (bas,expo : real) e: real;
begin
e:=power(bas,expo);
end;
operator ** (bas,expo : int64) i: int64;
begin
i:=power(bas,expo);
end;
{****************************************************************************
Subroutines for String handling
****************************************************************************}
@ -864,7 +876,10 @@ end;
{
$Log$
Revision 1.53 2004-02-06 20:17:13 daniel
Revision 1.54 2004-02-20 11:01:20 daniel
* Applied
Revision 1.53 2004/02/06 20:17:13 daniel
* Use $ for hex numbers instead of alien 0x
Revision 1.52 2004/01/22 20:12:37 florian

View File

@ -429,6 +429,10 @@ Function odd(l:QWord):Boolean;{$ifdef SYSTEMINLINE}inline;{$endif}
{ float math routines }
{$I mathh.inc}
operator ** (bas,expo : real) e: real;
operator ** (bas,expo : int64) i: int64;
{****************************************************************************
Addr/Pointer Handling
****************************************************************************}
@ -722,7 +726,10 @@ const
{
$Log$
Revision 1.84 2004-02-02 20:39:27 florian
Revision 1.85 2004-02-20 11:01:20 daniel
* Applied
Revision 1.84 2004/02/02 20:39:27 florian
+ added prefetch(const mem)
Revision 1.83 2004/01/26 11:48:24 florian