summaryrefslogtreecommitdiff
path: root/src/util/integer_cln_imp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/integer_cln_imp.h')
-rw-r--r--src/util/integer_cln_imp.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/util/integer_cln_imp.h b/src/util/integer_cln_imp.h
index ad21be287..07e85c118 100644
--- a/src/util/integer_cln_imp.h
+++ b/src/util/integer_cln_imp.h
@@ -59,7 +59,9 @@ private:
void readInt(const cln::cl_read_flags& flags, const std::string& s, unsigned base) throw(std::invalid_argument) {
try {
if(s.find_first_not_of('0') == std::string::npos) {
- // string of all zeroes, CLN has a bug for these inputs
+ // String of all zeroes, CLN has a bug for these inputs up to and
+ // including CLN v1.3.2.
+ // See http://www.ginac.de/CLN/cln.git/?a=commit;h=4a477b0cc3dd7fbfb23b25090ff8c8869c8fa21a for details.
d_value = read_integer(flags, "0", NULL, NULL);
} else {
d_value = read_integer(flags, s.c_str(), NULL, NULL);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback