Skip to content

Commit e61945c

Browse files
mstorsjoyuxuanchen1997
authored andcommitted
[libcxx] [test] Make indentation more consistent in thousands_sep. NFC. (#99844)
Summary: This was made inconsistent recently in f114edd. Test Plan: Reviewers: Subscribers: Tasks: Tags: Differential Revision: https://phabricator.intern.facebook.com/D60251124
1 parent 414f999 commit e61945c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

libcxx/test/std/localization/locale.categories/facet.numpunct/locale.numpunct.byname/thousands_sep.pass.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ int main(int, char**)
6464
std::locale l(LOCALE_fr_FR_UTF_8);
6565
{
6666
#if defined(_CS_GNU_LIBC_VERSION) || defined(_WIN32) || defined(_AIX)
67-
const char sep = ' ';
67+
const char sep = ' ';
6868
#else
6969
const char sep = ',';
7070
#endif
@@ -77,11 +77,11 @@ int main(int, char**)
7777
#if defined(_CS_GNU_LIBC_VERSION)
7878
const wchar_t wsep = glibc_version_less_than("2.27") ? L' ' : L'\u202f';
7979
# elif defined(_AIX)
80-
const wchar_t wsep = L'\u202F';
80+
const wchar_t wsep = L'\u202F';
8181
# elif defined(_WIN32)
82-
const wchar_t wsep = L'\u00A0';
82+
const wchar_t wsep = L'\u00A0';
8383
# else
84-
const wchar_t wsep = L',';
84+
const wchar_t wsep = L',';
8585
# endif
8686
typedef wchar_t C;
8787
const std::numpunct<C>& np = std::use_facet<std::numpunct<C> >(l);

0 commit comments

Comments
 (0)