mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-08 17:21:02 +00:00
18 lines
333 B
C++
18 lines
333 B
C++
|
|
/*
|
||
|
|
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <AK/StringBuilder.h>
|
||
|
|
#include <AK/Utf32View.h>
|
||
|
|
|
||
|
|
namespace AK {
|
||
|
|
|
||
|
|
ErrorOr<void> Formatter<Utf32View>::format(FormatBuilder& builder, Utf32View const& string)
|
||
|
|
{
|
||
|
|
return builder.builder().try_append(string);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|