Skip to content

Commit

Permalink
Don't use strtod_l on Android (#345)
Browse files Browse the repository at this point in the history
(cherry picked from commit c773953)
  • Loading branch information
vitaut authored and foonathan committed Oct 23, 2016
1 parent 14b4a2b commit 679fed9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fmt/posix.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 679fed9

Please sign in to comment.