mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
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:
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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user