summaryrefslogtreecommitdiff
path: root/tests
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 /tests
parent4dba86e698ebb5f929c421af1a7c6c6227a111d5 (diff)
downloadgmp-c3df806a3671a4f82959f5d3a035836e3ab1267d.tar.gz
Use GMP_DECIMAL_POINT more consistently.
Diffstat (limited to 'tests')
-rw-r--r--tests/cxx/t-locale.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cxx/t-locale.cc b/tests/cxx/t-locale.cc
index b649d9557..f05bb6dbb 100644
--- a/tests/cxx/t-locale.cc
+++ b/tests/cxx/t-locale.cc
@@ -105,7 +105,7 @@ check_input (void)
cout << " point " << point[i] << "\n";
cout << " str \"" << str << "\"\n";
cout << " localeconv point \""
- << localeconv()->decimal_point << "\"\n";
+ << GMP_DECIMAL_POINT << "\"\n";
abort ();
}
@@ -120,7 +120,7 @@ check_input (void)
cout << " got " << got << "\n";
cout << " want " << want << "\n";
cout << " localeconv point \""
- << localeconv()->decimal_point << "\"\n";
+ << GMP_DECIMAL_POINT << "\"\n";
abort ();
}
}