Results 45 comments of Shane Grant

See https://github.com/llvm-mirror/llvm/blob/master/cmake/modules/CheckAtomic.cmake for a potential CMAKE solution

Only affecting the json/xml archives serializing `long double`. Very likely some goofy sizing on pcc64le that goes through the wrong serialization function.

I should have time to address piled up issues in November. ________________________________ From: Andreas Tille ***@***.***> Sent: Friday, October 7, 2022 7:19:02 AM To: USCiLab/cereal ***@***.***> Cc: Shane Grant ***@***.***>;...

Can you reproduce this in a very simple test case that only serializes the float and still has an error?

I think the proper fix for this would for us to define separate load and save functions checking either `is_input_serializable` or `is_output_serializable`. For your use case, it is on that...

This strikes me as likely an incorrect usage of `cereal::defer` - it shouldn't be used in situations where there is any recursive structure to serialize as this defeats the purpose...

Thank you for the rebase - the only thing holding this up and holding up most PRs is that I haven't gotten around to fixing the various CI pipelines, which...

This looks pretty good, it needs a unit test like the other types, and that unit test should be properly gated behind C++17 conditionals like similar features.

Any archives included within cereal need to be header only including all dependencies so that we can bundle all of them. We won't implement support for MessagePack ourselves but would...

Option 1 is not a valid option for inclusion in cereal - you are free to develop and release this standalone, but anything included in cereal itself must be entirely...