From cc83f6e84ac262ff298352ee18f1e32ab40d2f4b Mon Sep 17 00:00:00 2001 From: Christian Kruse Date: Wed, 3 Sep 2025 07:11:08 -0700 Subject: [PATCH] Fix extra semi colon (#53483) Summary: Changelog: [Internal] Fix extra semi colon warning Pull Request resolved: https://github.com/facebook/react-native/pull/53483 Reviewed By: cortinico, kuwerty Differential Revision: D81032496 fbshipit-source-id: da7d6f8355fd6ae228033a380d38d677632bafaf --- .../ReactCommon/jsinspector-modern/ScopedExecutor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native/ReactCommon/jsinspector-modern/ScopedExecutor.h b/packages/react-native/ReactCommon/jsinspector-modern/ScopedExecutor.h index 6ede8b356d9..2c848fd63a6 100644 --- a/packages/react-native/ReactCommon/jsinspector-modern/ScopedExecutor.h +++ b/packages/react-native/ReactCommon/jsinspector-modern/ScopedExecutor.h @@ -94,4 +94,4 @@ class EnableExecutorFromThis : public std::enable_shared_from_this { VoidExecutor baseExecutor_; }; -}; // namespace facebook::react::jsinspector_modern +} // namespace facebook::react::jsinspector_modern