Skip to content

Commit

Permalink
Fix Win build (#43025)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #43025

Changelog:
[General][Fixed] - Fix JSExecutor build error on Windows

Reviewed By: motiz88, cipolleschi

Differential Revision: D53762452

fbshipit-source-id: bea7295d9261fa013d14231dfba66cb4369a8916
  • Loading branch information
Thomas Nardone authored and facebook-github-bot committed Feb 14, 2024
1 parent b8ad917 commit 1c4ed12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-native/ReactCommon/cxxreact/JSExecutor.h
Original file line number Diff line number Diff line change
Expand Up @@ -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() {}

Expand Down

0 comments on commit 1c4ed12

Please sign in to comment.