From e3b8e5e653fde6a35dbd5e34d64b4d5bf618a25c Mon Sep 17 00:00:00 2001 From: CodemodService Bot Date: Fri, 5 Dec 2025 07:31:00 -0800 Subject: [PATCH] Fix CQS signal readability-braces-around-statements in xplat/jsi/jsi (#54798) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/54798 Reviewed By: javache Differential Revision: D88462594 --- packages/react-native/ReactCommon/jsi/jsi/jsi.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/react-native/ReactCommon/jsi/jsi/jsi.cpp b/packages/react-native/ReactCommon/jsi/jsi/jsi.cpp index d7a81382e3d5..c362edf55d28 100644 --- a/packages/react-native/ReactCommon/jsi/jsi/jsi.cpp +++ b/packages/react-native/ReactCommon/jsi/jsi/jsi.cpp @@ -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; }