diff --git a/ReactCommon/react/renderer/mounting/TelemetryController.cpp b/ReactCommon/react/renderer/mounting/TelemetryController.cpp index a39989cb69d..b058bebcae8 100644 --- a/ReactCommon/react/renderer/mounting/TelemetryController.cpp +++ b/ReactCommon/react/renderer/mounting/TelemetryController.cpp @@ -19,8 +19,7 @@ TelemetryController::TelemetryController( bool TelemetryController::pullTransaction( std::function willMount, std::function doMount, - std::function didMount) const - noexcept { + std::function didMount) const { auto optional = mountingCoordinator_.pullTransaction(); if (!optional.has_value()) { return false; diff --git a/ReactCommon/react/renderer/mounting/TelemetryController.h b/ReactCommon/react/renderer/mounting/TelemetryController.h index 3532072a155..c0b3d28ddd2 100644 --- a/ReactCommon/react/renderer/mounting/TelemetryController.h +++ b/ReactCommon/react/renderer/mounting/TelemetryController.h @@ -45,8 +45,7 @@ class TelemetryController final { bool pullTransaction( std::function willMount, std::function doMount, - std::function didMount) const - noexcept; + std::function didMount) const; private: MountingCoordinator const &mountingCoordinator_;