From 0ed9fe3864c71a88c86d00e244bb70fcacdc035a Mon Sep 17 00:00:00 2001 From: Ali Mohammad Pur Date: Sat, 10 Dec 2022 19:33:56 +0330 Subject: [PATCH] AK: Allow non-ascii characters to be printed This keeps the FIXME, as well as the assertion. --- AK/Format.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AK/Format.cpp b/AK/Format.cpp index a75c8cf1a4b..6d558f72fa0 100644 --- a/AK/Format.cpp +++ b/AK/Format.cpp @@ -695,7 +695,7 @@ ErrorOr Formatter::format(FormatBuilder& builder, T value) { if (m_mode == Mode::Character) { // FIXME: We just support ASCII for now, in the future maybe unicode? - VERIFY(value >= 0 && value <= 127); + // VERIFY(value >= 0 && value <= 127); m_mode = Mode::String;