Fix warning C4100: 'rt': unreferenced formal parameter (#45633)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/45633

Changelog: [Internal]
Fix warning C4100: 'rt': unreferenced formal parameter

Differential Revision: D60152935

fbshipit-source-id: 9fe4b934721d38e7edf5c3329c40f5c0595a2897
This commit is contained in:
Dan Melnic
2024-07-24 09:28:18 -07:00
committed by Facebook GitHub Bot
parent 842c382773
commit 2052a1dfa3
@@ -13,7 +13,7 @@ namespace facebook::react {
template <>
struct Bridging<bool> {
static bool fromJs(jsi::Runtime& rt, const jsi::Value& value) {
static bool fromJs(jsi::Runtime&, const jsi::Value& value) {
return value.asBool();
}