mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:54:58 +00:00
AK: Allow non-ascii characters to be printed
This keeps the FIXME, as well as the assertion.
This commit is contained in:
parent
08fc42002c
commit
0ed9fe3864
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue