Commit 867b3309 authored by Victor Zverovich's avatar Victor Zverovich

Remove ANDROID macro check per comment in #458

parent 8cf30aa2
......@@ -3116,7 +3116,7 @@ void BasicWriter<Char>::write_int(T value, Spec spec) {
case 'n': {
unsigned num_digits = internal::count_digits(abs_value);
fmt::StringRef sep = "";
#if !(defined(ANDROID) || defined(__ANDROID__))
#ifndef __ANDROID__
sep = internal::thousands_sep(std::localeconv());
#endif
unsigned size = static_cast<unsigned>(
......
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