Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
Loading