mirror of
https://github.com/nlohmann/json.git
synced 2026-09-01 05:57:14 +00:00
check_escaped constructed the serializer with output_adapter<char>(ss), which produced the old owning output_adapter_t. The ctor now takes a non-owning output_adapter_protocol<char>*, so build the concrete output_stream_adapter on the stack and pass its address, matching how dump() and operator<< now call it. Signed-off-by: Claude <noreply@anthropic.com>