From 0e032fcc2671a0db249c5a36c3f6ba8c840b7b7a Mon Sep 17 00:00:00 2001 From: CodemodService Bot Date: Thu, 10 Jul 2025 09:54:07 -0700 Subject: [PATCH] Fix CQS signal modernize-use-using in xplat/js/react-native-github/packages/react-native/React/CoreModules [B] Reviewed By: dtolnay Differential Revision: D78062538 --- packages/react-native/React/CoreModules/RCTPerfMonitor.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native/React/CoreModules/RCTPerfMonitor.mm b/packages/react-native/React/CoreModules/RCTPerfMonitor.mm index 34f29744c2e..86eabc6fb20 100644 --- a/packages/react-native/React/CoreModules/RCTPerfMonitor.mm +++ b/packages/react-native/React/CoreModules/RCTPerfMonitor.mm @@ -39,7 +39,7 @@ static NSString *const RCTPerfMonitorCellIdentifier = @"RCTPerfMonitorCellIdenti static const CGFloat RCTPerfMonitorBarHeight = 50; static const CGFloat RCTPerfMonitorExpandHeight = 250; -typedef BOOL (*RCTJSCSetOptionType)(const char *); +using RCTJSCSetOptionType = BOOL (*)(const char *); NSArray *LabelsForRCTPerformanceLoggerTags();