You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How is this supposed to work (or rather, can it be made to work)?
The text was updated successfully, but these errors were encountered:
Boddlnagg
changed the title
format_bitset (nested_formatter) does not work with wchar_t
std::bitset formatting (nested_formatter) does not work with wchar_t
Jan 2, 2025
I tried to test the formatting of
std::bitset
usingfmt/std.h
, but withwchar_t
(andchar16_t
) instead ofchar
, using this test:It didn't compile until I applied the following changes to
std.h
:Now it runs into a segfault, which appears to be caused by the
set_fill
call innested_formatter::write_padded
:in combination with the implementation of
fill()
for non-char
types returning a nullpointer:How is this supposed to work (or rather, can it be made to work)?
The text was updated successfully, but these errors were encountered: