diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-11-26 13:18:55 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-11-26 13:18:55 +0000 |
commit | 8408ed8657475f978f43d085fd220f2a4e29e271 (patch) | |
tree | 3c49a8277901ced46332cf890229e0fdb2a4a787 /math/GiNaC/files | |
parent | upgrade to 3.4.0 (diff) |
upgrade to 1.0.1
Notes
Notes:
svn path=/head/; revision=50569
Diffstat (limited to 'math/GiNaC/files')
-rw-r--r-- | math/GiNaC/files/patch-ginac::numeric.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/math/GiNaC/files/patch-ginac::numeric.cpp b/math/GiNaC/files/patch-ginac::numeric.cpp new file mode 100644 index 000000000000..817362cd1477 --- /dev/null +++ b/math/GiNaC/files/patch-ginac::numeric.cpp @@ -0,0 +1,11 @@ +--- ginac/numeric.cpp.orig Mon Nov 26 20:59:49 2001 ++++ ginac/numeric.cpp Mon Nov 26 21:00:12 2001 +@@ -249,7 +249,7 @@ + // Read number as string + std::string str; + if (n.find_string("number", str)) { +- std::istringstream s(str); ++ std::istringstream s(str.c_str()); + cln::cl_idecoded_float re, im; + char c; + s.get(c); |