summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arprec.changelog3
-rw-r--r--arprec.patch9
2 files changed, 3 insertions, 9 deletions
diff --git a/arprec.changelog b/arprec.changelog
index 564762130e1d..541c07b15098 100644
--- a/arprec.changelog
+++ b/arprec.changelog
@@ -1,3 +1,6 @@
+Changes for 2.2.19
+ - Updated with a fix to write.cpp.
+
Changes for 2.2.18
- Updated with changes for Intel compiler v15-16.
diff --git a/arprec.patch b/arprec.patch
deleted file mode 100644
index 8791ad3bf030..000000000000
--- a/arprec.patch
+++ /dev/null
@@ -1,9 +0,0 @@
---- a/arprec-2.2.18/src/write.cpp
-+++ b/arprec-2.2.18/src/write.cpp
-@@ -196,6 +196,6 @@ bool mp_real::write(ostream &s, int precision, int width, int expn_width,
-
- string str = to_string(precision, width, expn_width,
- fmt, showpos, uppercase, fill);
-- return (s << str) != 0;
-+ return static_cast<bool>(s << str);
- }