summaryrefslogtreecommitdiff
path: root/src/util/integer_cln_imp.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-10-31 23:56:07 +0000
committerMorgan Deters <mdeters@gmail.com>2011-10-31 23:56:07 +0000
commitcbd5934ffce739fcc5ade1f8fdefcd0a04e0d9ef (patch)
tree4e4df17132766e6995995232f5dbfde94de89af4 /src/util/integer_cln_imp.h
parent9251373a4ca35e35c6d1d2740e6c958a85f0a329 (diff)
fixes to assertions in GMP to match CLN behavior
Diffstat (limited to 'src/util/integer_cln_imp.h')
-rw-r--r--src/util/integer_cln_imp.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util/integer_cln_imp.h b/src/util/integer_cln_imp.h
index b7a35fee8..517e406ec 100644
--- a/src/util/integer_cln_imp.h
+++ b/src/util/integer_cln_imp.h
@@ -246,12 +246,14 @@ public:
//friend std::ostream& operator<<(std::ostream& os, const Integer& n);
long getLong() const {
+ // ensure there isn't overflow
Assert(d_value <= std::numeric_limits<long>::max());
Assert(d_value >= std::numeric_limits<long>::min());
return cln::cl_I_to_long(d_value);
}
unsigned long getUnsignedLong() const {
+ // ensure there isn't overflow
Assert(d_value <= std::numeric_limits<unsigned long>::max());
Assert(d_value >= std::numeric_limits<unsigned long>::min());
return cln::cl_I_to_ulong(d_value);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback