mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-03 23:01:03 +00:00
Remove ANDROID macro check per comment in #458
This commit is contained in:
parent
8cf30aa2be
commit
867b330966
@ -3116,7 +3116,7 @@ void BasicWriter<Char>::write_int(T value, Spec spec) {
|
|||||||
case 'n': {
|
case 'n': {
|
||||||
unsigned num_digits = internal::count_digits(abs_value);
|
unsigned num_digits = internal::count_digits(abs_value);
|
||||||
fmt::StringRef sep = "";
|
fmt::StringRef sep = "";
|
||||||
#if !(defined(ANDROID) || defined(__ANDROID__))
|
#ifndef __ANDROID__
|
||||||
sep = internal::thousands_sep(std::localeconv());
|
sep = internal::thousands_sep(std::localeconv());
|
||||||
#endif
|
#endif
|
||||||
unsigned size = static_cast<unsigned>(
|
unsigned size = static_cast<unsigned>(
|
||||||
|
Loading…
Reference in New Issue
Block a user