Compare commits

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

Reviewed By: adamjernst

Differential Revision: D79623776
2025-08-07 12:58:12 -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;
}