We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef0ea4d commit a05f9c6Copy full SHA for a05f9c6
packages/react-native/ReactCommon/react/bridging/Convert.h
@@ -158,12 +158,12 @@ auto convert(jsi::Runtime& rt, std::optional<T> value) {
158
}
159
160
template <typename T, std::enable_if_t<std::is_scalar_v<T>, int> = 0>
161
-auto convert(jsi::Runtime& rt, T&& value) {
+auto convert(jsi::Runtime& /*rt*/, T&& value) {
162
return value;
163
164
165
template <typename T>
166
-auto convert(jsi::Runtime& rt, Converter<T>&& converter) {
+auto convert(jsi::Runtime& /*rt*/, Converter<T>&& converter) {
167
return std::move(converter);
168
169
0 commit comments