summaryrefslogtreecommitdiff
path: root/zen/int64.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:30:42 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:30:42 +0200
commit767bb3951c65e38627cb0bbad9a3756e1cda2520 (patch)
tree460b18606d2c3472d5aa08444db4db62c6410248 /zen/int64.h
parent6.0 (diff)
downloadFreeFileSync-767bb3951c65e38627cb0bbad9a3756e1cda2520.tar.gz
FreeFileSync-767bb3951c65e38627cb0bbad9a3756e1cda2520.tar.bz2
FreeFileSync-767bb3951c65e38627cb0bbad9a3756e1cda2520.zip
6.1
Diffstat (limited to 'zen/int64.h')
-rw-r--r--zen/int64.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/zen/int64.h b/zen/int64.h
index 6901ebeb..f658e034 100644
--- a/zen/int64.h
+++ b/zen/int64.h
@@ -39,9 +39,6 @@ void checkRange(U value)
//caveat: std::numeric_limits<T>::min returns minimum positive(!) number for T = double, while behaving correctly for integer types... sigh
assert(double(std::numeric_limits<T>::lowest()) <= double(value) && //new with C++11!
double(std::numeric_limits<T>::max() ) >= double(value));
-
- // assert(double(boost::numeric::bounds<T>::lowest ()) <= double(value) &&
- // double(boost::numeric::bounds<T>::highest()) >= double(value));
}
class Int64
bgstack15