From 2052a1dfa3df7767122db478dd772a6e067260f4 Mon Sep 17 00:00:00 2001 From: Dan Melnic Date: Wed, 24 Jul 2024 09:28:18 -0700 Subject: [PATCH] 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 --- packages/react-native/ReactCommon/react/bridging/Bool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native/ReactCommon/react/bridging/Bool.h b/packages/react-native/ReactCommon/react/bridging/Bool.h index f81d3f9fc26..86143113288 100644 --- a/packages/react-native/ReactCommon/react/bridging/Bool.h +++ b/packages/react-native/ReactCommon/react/bridging/Bool.h @@ -13,7 +13,7 @@ namespace facebook::react { template <> struct Bridging { - static bool fromJs(jsi::Runtime& rt, const jsi::Value& value) { + static bool fromJs(jsi::Runtime&, const jsi::Value& value) { return value.asBool(); }