Skip to content

Commit a05f9c6

Browse files
Douglas Cheongfacebook-github-bot
authored andcommitted
Mark params as unused (facebook#46426)
Summary: Pull Request resolved: facebook#46426 ## Changelog: [Internal] - Comment out unused params Reviewed By: rshest Differential Revision: D62448755 fbshipit-source-id: da647197994b982f924b2c1330a2b529e48d7ad8
1 parent ef0ea4d commit a05f9c6

File tree

1 file changed

+2
-2
lines changed
  • packages/react-native/ReactCommon/react/bridging

1 file changed

+2
-2
lines changed

packages/react-native/ReactCommon/react/bridging/Convert.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,12 +158,12 @@ auto convert(jsi::Runtime& rt, std::optional<T> value) {
158158
}
159159

160160
template <typename T, std::enable_if_t<std::is_scalar_v<T>, int> = 0>
161-
auto convert(jsi::Runtime& rt, T&& value) {
161+
auto convert(jsi::Runtime& /*rt*/, T&& value) {
162162
return value;
163163
}
164164

165165
template <typename T>
166-
auto convert(jsi::Runtime& rt, Converter<T>&& converter) {
166+
auto convert(jsi::Runtime& /*rt*/, Converter<T>&& converter) {
167167
return std::move(converter);
168168
}
169169

0 commit comments

Comments
 (0)