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

LibWeb: Mark Fetch::collect_an_http_quoted_string() [[nodiscard]]

This commit is contained in:
Linus Groh 2022-07-14 00:32:50 +01:00
parent f42f0cceaa
commit 9d60010b44

View file

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