Compare commits

...
1 Commits
Author SHA1 Message Date
CodemodService Bot 915f572318 Fix CQS signal readability-const-return-type in xplat/js/react-native-github/packages
Reviewed By: javache

Differential Revision: D83238455
2025-09-29 06:07:00 -07:00
3 changed files with 3 additions and 3 deletions
@@ -51,7 +51,7 @@ const InteractionTypesMap& getInteractionTypes() {
return INTERACTION_TYPES;
}
const std::string_view getInteractionTypeForEvent(std::string_view eventName) {
std::string_view getInteractionTypeForEvent(std::string_view eventName) {
const auto& interactionTypes = getInteractionTypes();
auto it = interactionTypes.find(eventName);
if (it != interactionTypes.end()) {
@@ -17,6 +17,6 @@ using InteractionTypesMap =
const InteractionTypesMap& getInteractionTypes();
const std::string_view getInteractionTypeForEvent(std::string_view eventName);
std::string_view getInteractionTypeForEvent(std::string_view eventName);
} // namespace facebook::react
@@ -104,7 +104,7 @@ static Class getViewManagerClass(const std::string &componentName, RCTBridge *br
return nil;
}
static const std::shared_ptr<void> constructCoordinator(
static std::shared_ptr<void> constructCoordinator(
const std::shared_ptr<const ContextContainer> &contextContainer,
const ComponentDescriptor::Flavor &flavor)
{