summaryrefslogtreecommitdiff
path: root/cxx/ismpf.cc
diff options
context:
space:
mode:
authorMarc Glisse <marc.glisse@inria.fr>2013-06-28 21:09:37 +0200
committerMarc Glisse <marc.glisse@inria.fr>2013-06-28 21:09:37 +0200
commitc3df806a3671a4f82959f5d3a035836e3ab1267d (patch)
tree084ab59e912365022047b94e683228431467add0 /cxx/ismpf.cc
parent4dba86e698ebb5f929c421af1a7c6c6227a111d5 (diff)
downloadgmp-c3df806a3671a4f82959f5d3a035836e3ab1267d.tar.gz
Use GMP_DECIMAL_POINT more consistently.
Diffstat (limited to 'cxx/ismpf.cc')
-rw-r--r--cxx/ismpf.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/cxx/ismpf.cc b/cxx/ismpf.cc
index 520d4c3e2..b97d68b39 100644
--- a/cxx/ismpf.cc
+++ b/cxx/ismpf.cc
@@ -45,7 +45,7 @@ operator>> (istream &i, mpf_ptr f)
bool ok = false;
// C decimal point, as expected by mpf_set_str
- const char *lconv_point = localeconv()->decimal_point;
+ const char *lconv_point = GMP_DECIMAL_POINT;
// C++ decimal point
#if HAVE_STD__LOCALE