diff --git a/AK/Utf16View.h b/AK/Utf16View.h index 58e636adc0..a332ed6a23 100644 --- a/AK/Utf16View.h +++ b/AK/Utf16View.h @@ -6,6 +6,7 @@ #pragma once +#include #include #include #include @@ -120,4 +121,12 @@ private: } +template<> +struct AK::Formatter : Formatter { + void format(FormatBuilder& builder, AK::Utf16View const& value) + { + return builder.builder().append(value); + } +}; + using AK::Utf16View;