Don't use strtod_l on Android (#345)

(cherry picked from commit c7739536e8)
This commit is contained in:
Victor Zverovich
2016-06-14 06:57:12 -07:00
committed by Jonathan Müller
parent 14b4a2b073
commit 679fed9187

View File

@ -339,7 +339,7 @@ class File {
// Returns the memory page size.
long getpagesize();
#if defined(LC_NUMERIC_MASK) || defined(_MSC_VER)
#if (defined(LC_NUMERIC_MASK) || defined(_MSC_VER)) && !defined(__ANDROID__)
# define FMT_LOCALE
#endif