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;