]> gitweb.factorcode.org Git - factor.git/commitdiff
math.functions: flushable and foldable don't do anything on inline words because...
authorDoug Coleman <doug.coleman@gmail.com>
Mon, 7 Nov 2011 03:25:53 +0000 (19:25 -0800)
committerDoug Coleman <doug.coleman@gmail.com>
Mon, 7 Nov 2011 03:25:53 +0000 (19:25 -0800)
basis/math/functions/functions.factor

index bd312406b60de7eed332522603a334a4b1a85f77..94bee1ade689c71358fc2c88e44c4a5b1510a467 100644 (file)
@@ -109,7 +109,7 @@ PRIVATE>
 : nth-root ( n x -- y ) swap recip ^ ; inline
 
 : gcd ( x y -- a d )
-    [ 0 1 ] 2dip (gcd) dup 0 < [ neg ] when ; foldable inline
+    [ 0 1 ] 2dip (gcd) dup 0 < [ neg ] when ; inline
 
 : lcm ( a b -- c )
     [ * ] 2keep gcd nip /i ; foldable