Depreate strtod and remove problematic tests

This commit is contained in:
Victor Zverovich
2021-08-28 09:20:36 -07:00
parent 74c1118964
commit 729a44e67d
3 changed files with 1 additions and 36 deletions

View File

@@ -502,7 +502,7 @@ class locale {
// Converts string to floating-point number and advances str past the end
// of the parsed input.
double strtod(const char*& str) const {
FMT_DEPRECATED double strtod(const char*& str) const {
char* end = nullptr;
double result = strtod_l(str, &end, locale_);
str = end;