Compare commits

...
1 Commits
Author SHA1 Message Date
CodemodService Bot 81faf66451 Fix CQS signal readability-braces-around-statements in xplat/jsi/jsi (#54151)
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/54151

Differential Revision: D84594585
2025-10-14 11:23:36 -07:00
@@ -231,8 +231,9 @@ inline char hexDigit(unsigned x) {
// ASCII characters
bool isAllASCII(const char16_t* utf16, size_t length) {
for (const char16_t* e = utf16 + length; utf16 != e; ++utf16) {
if (*utf16 > 0x7F)
if (*utf16 > 0x7F) {
return false;
}
}
return true;
}