Skip to content

Commit b6b8865

Browse files
committed
fix clang-format
1 parent dedd1fc commit b6b8865

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

libc/src/ctype/isalpha.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace LIBC_NAMESPACE_DECL {
1717

1818
LLVM_LIBC_FUNCTION(int, isalpha, (int c)) {
1919
if (c < 0 || c > cpp::numeric_limits<unsigned char>::max())
20-
return 0;
20+
return 0;
2121
return static_cast<int>(internal::isalpha(static_cast<char>(c)));
2222
}
2323

libc/src/ctype/isgraph.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace LIBC_NAMESPACE_DECL {
1717

1818
LLVM_LIBC_FUNCTION(int, isgraph, (int c)) {
1919
if (c < 0 || c > cpp::numeric_limits<unsigned char>::max())
20-
return 0;
20+
return 0;
2121
return static_cast<int>(internal::isgraph(static_cast<char>(c)));
2222
}
2323

libc/src/ctype/isspace.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace LIBC_NAMESPACE_DECL {
1717

1818
LLVM_LIBC_FUNCTION(int, isspace, (int c)) {
1919
if (c < 0 || c > cpp::numeric_limits<unsigned char>::max())
20-
return 0;
20+
return 0;
2121
return static_cast<int>(internal::isspace(static_cast<char>(c)));
2222
}
2323

libc/src/ctype/isspace_l.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace LIBC_NAMESPACE_DECL {
1717

1818
LLVM_LIBC_FUNCTION(int, isspace_l, (int c, locale_t)) {
1919
if (c < 0 || c > cpp::numeric_limits<unsigned char>::max())
20-
return 0;
20+
return 0;
2121
return static_cast<int>(internal::isspace(static_cast<char>(c)));
2222
}
2323

0 commit comments

Comments
 (0)