From c7739536e8e1ec844527620a2669393a6e3df130 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 14 Jun 2016 06:57:12 -0700 Subject: [PATCH] Don't use strtod_l on Android (#345) --- fmt/posix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fmt/posix.h b/fmt/posix.h index a830f6b2..bdff77fc 100644 --- a/fmt/posix.h +++ b/fmt/posix.h @@ -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