1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:07:46 +00:00

LibWeb: Make Fetch::collect_an_http_quoted_string()'s 2nd param optional

This commit is contained in:
Linus Groh 2022-07-12 22:58:46 +01:00
parent fad69fcacd
commit f42f0cceaa
2 changed files with 2 additions and 2 deletions

View file

@ -25,6 +25,6 @@ enum class HttpQuotedStringExtractValue {
Yes,
};
String collect_an_http_quoted_string(GenericLexer& lexer, HttpQuotedStringExtractValue extract_value);
String collect_an_http_quoted_string(GenericLexer& lexer, HttpQuotedStringExtractValue extract_value = HttpQuotedStringExtractValue::No);
}