Skip to content

Commit

Permalink
Don't use strtod_l on Android (#345)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaut committed Jun 14, 2016
1 parent dfa631e commit c773953
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 c773953

Please sign in to comment.