diff base/src/java/lang/Float.d @ 107:e944a4cf537b

Updated to dmd 1.063 and Tango trunk.
author Jacob Carlborg <doob@me.com>
date Sun, 22 Aug 2010 18:53:29 +0200
parents 9e0ab372d5d8
children 536e43f63c81
line wrap: on
line diff
--- a/base/src/java/lang/Float.d	Sun Nov 08 12:44:48 2009 +0100
+++ b/base/src/java/lang/Float.d	Sun Aug 22 18:53:29 2010 +0200
@@ -11,7 +11,7 @@
     public static float NEGATIVE_INFINITY = ((-1.0f) / 0.0f);
     public static float NaN = (0.0f / 0.0f);
     public static float MAX_VALUE = 3.4028235e+38f;
-    public static float MIN_VALUE = 1.4e-45f;
+    public static float MIN_VALUE = float.min; //1.4e-45f
     public static int SIZE = 32;
     private float value;