mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 00:50:22 +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
Notes:
sideshowbarker
2024-07-17 03:25:53 +09:00
Author: https://github.com/alimpfard Commit: https://github.com/SerenityOS/serenity/commit/0ed9fe3864 Pull-request: https://github.com/SerenityOS/serenity/pull/16396 Reviewed-by: https://github.com/ADKaster Reviewed-by: https://github.com/awesomekling ✅
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…
Reference in a new issue