Can more character types be supported? Such as wchar_t, char8_t, char16_t, char32_t #4461
Closed
aSurgingRiver
started this conversation in
General
Replies: 1 comment
-
|
The library's internal string storage is UTF-8 based, so This reply was drafted by Claude Code on behalf of @nlohmann, as part of a review of open discussions. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The software library supports the char character type by default.
Using wchar_t character type instantiation will result in an error.
basic_json<std::map, std::vector, std::wstring>
The library uses a large number of char instantiations in serialization and deserialization. This causes a mismatch with the wchar_t type.
Beta Was this translation helpful? Give feedback.
All reactions