# HG changeset patch # User Frank Benoit # Date 1218502034 -7200 # Node ID 98fd89730a00cda912df915b6301441f73578f63 # Parent 92e785261f30f02187e266513533c2e06c18aa55 Add Long min/max value diff -r 92e785261f30 -r 98fd89730a00 dwt/dwthelper/utils.d --- a/dwt/dwthelper/utils.d Fri Aug 08 15:19:05 2008 +0200 +++ b/dwt/dwthelper/utils.d Tue Aug 12 02:47:14 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); }