mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Replace #import in C++ Header with #include (#31805)
Summary: #import is common in Objective C, but is a vendor-specific extension of C++, which breaks MSVC compat. Fix an #import that made its way into C++ code. ## Changelog <!-- Help reviewers and the release process by writing your own changelog entry. For an example, see: https://github.com/facebook/react-native/wiki/Changelog --> [Internal] [Fixed] - Replace #import in C++ Header with #include Pull Request resolved: https://github.com/facebook/react-native/pull/31805 Reviewed By: sammy-SC Differential Revision: D29553429 Pulled By: javache fbshipit-source-id: d609981f0c6a756eafb58d50e98975625d08de21
This commit is contained in:
committed by
Facebook GitHub Bot
parent
3bce393766
commit
bf2e1c9763
@@ -7,7 +7,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#import <ReactCommon/RuntimeExecutor.h>
|
||||
#include <ReactCommon/RuntimeExecutor.h>
|
||||
#include <folly/dynamic.h>
|
||||
#include <jsi/jsi.h>
|
||||
#include <react/renderer/core/RawValue.h>
|
||||
|
||||
Reference in New Issue
Block a user