mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +00:00
AK: Allow non-ascii characters to be printed
This keeps the FIXME, as well as the assertion.
This commit is contained in:
committed by
Ali Mohammad Pur
parent
08fc42002c
commit
0ed9fe3864
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user