-
Hello, I recently had to disable implicit conversions as they finally completely broke for us: If one of the types that json converts to are output streamable then streaming out json will immediately become ambiguous. Maybe that is further incentive for deprecating/disablong this and/or defaulting to disabled implicit conversions. The problem is the disabling of implicit conversions seemingly only has been done for the single file header, but we really like to use json_fwd to speed up compilation, which is not possible with single file. Is it possible to enable those for non-single-file? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
oh, I thought you had just deleted this as of my me being too stupid to see that somehow misteriously I completely messed up, and of course the implicit switch works also on multi-file. the only thing to "discuss" here is maybe deprecating them as they can very easily go wild? anyway, sorry again. |
Beta Was this translation helpful? Give feedback.
-
The single header is a combination of the individual headers, so anything that works for the single headers should work for the multiple headers. Can you provide more detail about what is not working for you? |
Beta Was this translation helpful? Give feedback.
The single header is a combination of the individual headers, so anything that works for the single headers should work for the multiple headers. Can you provide more detail about what is not working for you?