From 1c4ed12370101c12e9c5390733ec42469ca9cfd7 Mon Sep 17 00:00:00 2001 From: Thomas Nardone Date: Wed, 14 Feb 2024 14:58:45 -0800 Subject: [PATCH] Fix Win build (#43025) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/43025 Changelog: [General][Fixed] - Fix JSExecutor build error on Windows Reviewed By: motiz88, cipolleschi Differential Revision: D53762452 fbshipit-source-id: bea7295d9261fa013d14231dfba66cb4369a8916 --- packages/react-native/ReactCommon/cxxreact/JSExecutor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native/ReactCommon/cxxreact/JSExecutor.h b/packages/react-native/ReactCommon/cxxreact/JSExecutor.h index 0b7041e1375943..3a6ef14b7bae04 100644 --- a/packages/react-native/ReactCommon/cxxreact/JSExecutor.h +++ b/packages/react-native/ReactCommon/cxxreact/JSExecutor.h @@ -130,7 +130,7 @@ class RN_EXPORT JSExecutor : public jsinspector_modern::RuntimeTargetDelegate { virtual void handleMemoryPressure([[maybe_unused]] int pressureLevel) {} virtual void destroy() {} - virtual ~JSExecutor() {} + virtual ~JSExecutor() override {} virtual void flush() {}