mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-12-25 17:02:44 +01:00
Changing the stream to `std::hex` mode should only affect the current character; otherwise printing some msgpack with a list like this: `[123, "string\\u0003", 123]` (123 decimal) ends up printing `[123, "string\\u0003", 7b]`, as `std::hex` is sticky.