AK: Allow non-ascii characters to be printed

This keeps the FIXME, as well as the assertion.
This commit is contained in:
Ali Mohammad Pur 2022-12-10 19:33:56 +03:30 committed by Ali Mohammad Pur
parent 08fc42002c
commit 0ed9fe3864

View file

@ -695,7 +695,7 @@ ErrorOr<void> Formatter<T>::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;