mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 19:36:18 +01:00
Avoid unused variable warnings in g_ascii_strtod
This commit is contained in:
parent
7c0ee79e34
commit
65eb65b777
@ -683,6 +683,16 @@ gdouble
|
||||
g_ascii_strtod (const gchar *nptr,
|
||||
gchar **endptr)
|
||||
{
|
||||
#ifdef HAVE_STRTOD_L
|
||||
|
||||
g_return_val_if_fail (nptr != NULL, 0);
|
||||
|
||||
errno = 0;
|
||||
|
||||
return strtod_l (nptr, endptr, get_C_locale ());
|
||||
|
||||
#else
|
||||
|
||||
gchar *fail_pos;
|
||||
gdouble val;
|
||||
struct lconv *locale_data;
|
||||
@ -694,12 +704,6 @@ g_ascii_strtod (const gchar *nptr,
|
||||
|
||||
g_return_val_if_fail (nptr != NULL, 0);
|
||||
|
||||
#ifdef HAVE_STRTOD_L
|
||||
errno = 0;
|
||||
|
||||
return strtod_l (nptr, endptr, get_C_locale ());
|
||||
#else
|
||||
|
||||
fail_pos = NULL;
|
||||
|
||||
locale_data = localeconv ();
|
||||
|
Loading…
Reference in New Issue
Block a user