Skip to content

Commit 8fef864

Browse files
CodemodService Botfacebook-github-bot
authored andcommitted
Fix CQS signal readability-braces-around-statements in xplat/jsi/jsi
Differential Revision: D86646676
1 parent f383241 commit 8fef864

File tree

1 file changed

+2
-1
lines changed
  • packages/react-native/ReactCommon/jsi/jsi

1 file changed

+2
-1
lines changed

packages/react-native/ReactCommon/jsi/jsi/jsi.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,9 @@ inline char hexDigit(unsigned x) {
231231
// ASCII characters
232232
bool isAllASCII(const char16_t* utf16, size_t length) {
233233
for (const char16_t* e = utf16 + length; utf16 != e; ++utf16) {
234-
if (*utf16 > 0x7F)
234+
if (*utf16 > 0x7F) {
235235
return false;
236+
}
236237
}
237238
return true;
238239
}

0 commit comments

Comments
 (0)