mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-13 04:46:15 +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,
|
g_ascii_strtod (const gchar *nptr,
|
||||||
gchar **endptr)
|
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;
|
gchar *fail_pos;
|
||||||
gdouble val;
|
gdouble val;
|
||||||
struct lconv *locale_data;
|
struct lconv *locale_data;
|
||||||
@ -694,12 +704,6 @@ g_ascii_strtod (const gchar *nptr,
|
|||||||
|
|
||||||
g_return_val_if_fail (nptr != NULL, 0);
|
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;
|
fail_pos = NULL;
|
||||||
|
|
||||||
locale_data = localeconv ();
|
locale_data = localeconv ();
|
||||||
|
Loading…
Reference in New Issue
Block a user