mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 19:17:35 +00:00
LibWeb: Port GeneralEnclosed to new Strings
This commit is contained in:
parent
b5eb2ee478
commit
33e9c4e1b2
3 changed files with 7 additions and 7 deletions
|
@ -93,7 +93,7 @@ ErrorOr<String> Supports::InParens::to_string() const
|
|||
return value.visit(
|
||||
[](NonnullOwnPtr<Condition> const& condition) -> ErrorOr<String> { return String::formatted("({})", TRY(condition->to_string())); },
|
||||
[](Supports::Feature const& it) -> ErrorOr<String> { return it.to_string(); },
|
||||
[](GeneralEnclosed const& it) -> ErrorOr<String> { return String::from_utf8(it.to_string()); });
|
||||
[](GeneralEnclosed const& it) -> ErrorOr<String> { return it.to_string(); });
|
||||
}
|
||||
|
||||
ErrorOr<String> Supports::Condition::to_string() const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue