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

LibWeb: Port CSS::Parser::Block to new Strings

This commit is contained in:
Sam Atkins 2023-02-14 18:49:25 +00:00 committed by Tim Flynn
parent e338ef4914
commit 86d23c63a4
4 changed files with 11 additions and 11 deletions

View file

@ -1,6 +1,6 @@
/*
* Copyright (c) 2020-2021, the SerenityOS developers.
* Copyright (c) 2021, Sam Atkins <atkinssj@serenityos.org>
* Copyright (c) 2021-2023, Sam Atkins <atkinssj@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@ -32,7 +32,7 @@ public:
Vector<ComponentValue> const& values() const { return m_values; }
DeprecatedString to_deprecated_string() const;
ErrorOr<String> to_string() const;
private:
Block(Token, Vector<ComponentValue>&&);