We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ff3b81 commit 3de1f76Copy full SHA for 3de1f76
1 file changed
packages/react-native/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTJscInstance.mm
@@ -10,9 +10,10 @@
10
11
namespace facebook::react {
12
13
-RCTJscInstance::RCTJscInstance() {}
+RCTJscInstance::RCTJscInstance() = default;
14
15
-std::unique_ptr<JSRuntime> RCTJscInstance::createJSRuntime(std::shared_ptr<MessageQueueThread> msgQueueThread) noexcept
+std::unique_ptr<JSRuntime> RCTJscInstance::createJSRuntime(
16
+ std::shared_ptr<MessageQueueThread> /*msgQueueThread*/) noexcept
17
{
18
return std::make_unique<JSIRuntimeHolder>(jsc::makeJSCRuntime());
19
}
0 commit comments