Skip to content

Commit 137d877

Browse files
committed
fix formatting
1 parent b66919b commit 137d877

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

libcxx/test/std/depr/depr.c.headers/stdlib_h.pass.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,9 @@ int main(int, char**) {
142142
const wchar_t* pwc = 0;
143143
char* pc = 0;
144144
// mblen was added in Android API 26.
145-
#if !defined(__ANDROID__) || __ANDROID_API__ >= 26
145+
# if !defined(__ANDROID__) || __ANDROID_API__ >= 26
146146
ASSERT_SAME_TYPE(int, decltype(mblen("",0)));
147-
#endif
147+
# endif
148148
ASSERT_SAME_TYPE(int, decltype(mbtowc(pw,"",0)));
149149
ASSERT_SAME_TYPE(int, decltype(wctomb(pc,L' ')));
150150
ASSERT_SAME_TYPE(size_t, decltype(mbstowcs(pw,"",0)));

libcxx/test/std/language.support/support.runtime/cstdlib.pass.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,9 @@ int main(int, char**)
142142
const wchar_t* pwc = 0;
143143
char* pc = 0;
144144
// mblen was added in Android API 26.
145-
#if !defined(__ANDROID__) || __ANDROID_API__ >= 26
145+
# if !defined(__ANDROID__) || __ANDROID_API__ >= 26
146146
static_assert((std::is_same<decltype(std::mblen("",0)), int>::value), "");
147-
#endif
147+
# endif
148148
static_assert((std::is_same<decltype(std::mbtowc(pw,"",0)), int>::value), "");
149149
static_assert((std::is_same<decltype(std::wctomb(pc,L' ')), int>::value), "");
150150
static_assert((std::is_same<decltype(std::mbstowcs(pw,"",0)), std::size_t>::value), "");

0 commit comments

Comments
 (0)