# HG changeset patch # User Frank Benoit # Date 1218501746 -7200 # Node ID 1e93ff891d850cc135252511bcbac9d092bced7a # Parent 2f204a4aebc6a0083f2aeb00e9c64bea7a3ba430 Add Long min/max value diff -r 2f204a4aebc6 -r 1e93ff891d85 dwt/dwthelper/utils.d --- a/dwt/dwthelper/utils.d Fri Aug 08 15:25:08 2008 +0200 +++ b/dwt/dwthelper/utils.d Tue Aug 12 02:42:26 2008 +0200 @@ -313,6 +313,8 @@ } class Long : ValueWrapperT!(long) { + public static const long MIN_VALUE = long.min; + public static const long MAX_VALUE = long.max; this( long value ){ super(value); }