Skip to content

Commit d2b065f

Browse files
generatedunixname89002005287564meta-codesync[bot]
authored andcommitted
Fix CQS signal readability-braces-around-statements in xplat/jsi/jsi (#54798)
Summary: Pull Request resolved: #54798 Reviewed By: javache Differential Revision: D88462594 fbshipit-source-id: d95b8375ee5f86c7bcfc8c7d9366832b6b548290
1 parent ade19e8 commit d2b065f

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)