# HG changeset patch # User Frank Benoit # Date 1219238606 -7200 # Node ID 2a558b06fef7b278b084a096410fb7e44a4d2d0e # Parent bb89fd34ec82a7e027e12ffd4a417d246f12827f# Parent 98fd89730a00cda912df915b6301441f73578f63 merge diff -r bb89fd34ec82 -r 2a558b06fef7 dwt/dwthelper/utils.d --- a/dwt/dwthelper/utils.d Wed Aug 20 15:20:55 2008 +0200 +++ b/dwt/dwthelper/utils.d Wed Aug 20 15:23: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); }