Procházet zdrojové kódy

- undid merge of r11461: it adds extra inline specifiers, which is
a) not a fix in any way
b) a very bad idea for the fixes branch given that there are still
still bugs in the inlining functionality (e.g. mantis #12576)

git-svn-id: branches/fixes_2_2@12105 -

Jonas Maebe před 17 roky
rodič
revize
a42660db37
1 změnil soubory, kde provedl 4 přidání a 4 odebrání
  1. 4 4
      rtl/objpas/math.pp

+ 4 - 4
rtl/objpas/math.pp

@@ -313,8 +313,8 @@ function power(base,exponent : float) : float;
 { base^exponent }
 function intpower(base : float;const exponent : Integer) : float;
 
-operator ** (bas,expo : float) e: float; inline;
-operator ** (bas,expo : int64) i: int64; inline;
+operator ** (bas,expo : float) e: float;
+operator ** (bas,expo : int64) i: int64;
 
 { number converting }
 
@@ -908,13 +908,13 @@ function intpower(base : float;const exponent : Integer) : float;
   end;
 
 
-operator ** (bas,expo : float) e: float; inline;
+operator ** (bas,expo : float) e: float;
   begin
     e:=power(bas,expo);
   end;
 
 
-operator ** (bas,expo : int64) i: int64; inline;
+operator ** (bas,expo : int64) i: int64;
   begin
     i:=round(intpower(bas,expo));
   end;