Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

namespace facebook::react {

inline void fromRawValue(const PropsParserContext &context, const RawValue &value, ImageSource &result)
inline void fromRawValue(const PropsParserContext & /* context */, const RawValue &value, ImageSource &result)
{
if (value.hasType<std::string>()) {
result = {
Expand Down Expand Up @@ -116,7 +116,7 @@ inline std::string toString(const ImageSource &value)
return "{uri: " + value.uri + "}";
}

inline void fromRawValue(const PropsParserContext &context, const RawValue &value, ImageResizeMode &result)
inline void fromRawValue(const PropsParserContext & /* context */, const RawValue &value, ImageResizeMode &result)
{
react_native_expect(value.hasType<std::string>());
if (!value.hasType<std::string>()) {
Expand Down
Loading