Skip to content

Commit

Permalink
Remove ANDROID macro check per comment in #458
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaut committed Feb 7, 2018
1 parent 8cf30aa commit 867b330
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fmt/format.h
Original file line number Diff line number Diff line change
Expand Up @@ -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>(
Expand Down

0 comments on commit 867b330

Please sign in to comment.