We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec7f729 commit 4234f92Copy full SHA for 4234f92
1 file changed
packages/react-native/ReactCommon/jsi/jsi/jsi.cpp
@@ -231,8 +231,9 @@ inline char hexDigit(unsigned x) {
231
// ASCII characters
232
bool isAllASCII(const char16_t* utf16, size_t length) {
233
for (const char16_t* e = utf16 + length; utf16 != e; ++utf16) {
234
- if (*utf16 > 0x7F)
+ if (*utf16 > 0x7F) {
235
return false;
236
+ }
237
}
238
return true;
239
0 commit comments