Commit c7739536 authored by Victor Zverovich's avatar Victor Zverovich

Don't use strtod_l on Android (#345)

parent dfa631e6
...@@ -339,7 +339,7 @@ class File { ...@@ -339,7 +339,7 @@ class File {
// Returns the memory page size. // Returns the memory page size.
long getpagesize(); long getpagesize();
#if defined(LC_NUMERIC_MASK) || defined(_MSC_VER) #if (defined(LC_NUMERIC_MASK) || defined(_MSC_VER)) && !defined(__ANDROID__)
# define FMT_LOCALE # define FMT_LOCALE
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment