Shane Grant
Shane Grant
I discussed this with @randvoorhies and we will very likely end up merging the code but it will become a cereal module, which is something we're going to roll out...
The pull request is at #138, we haven't made any progress in merging it yet.
Will be merged after I sort out CI.
There is an important difference in your code that is causing this problem. See here: https://uscilab.github.io/cereal/quickstart.html and read the section "Serialize your data" note: > Important! If you didn’t read...
As has been said you won't be able to use `CEREAL_CLASS_VERSION' directly, but you can do it manually and probably make your own macro to make this convenient. See the...
Seemed to work in a really simple test case: ``` cpp int main() { { cereal::JSONOutputArchive ar( std::cout ); A a = {3}; A b = {3.14}; ar( a, b...
Yes CI seems to be borked - was hoping to go through and slam through a bunch of these PRs but will have to fix that before I do so.
Should be fixed by https://github.com/USCiLab/cereal/pull/764 - I will try to get a new tag out in the near future after fixing various CI and merging a few more PRs.
Can you show the full class definition for `Dust`? This might be a name collision or it might be something as simple as not having a virtual function.
Looking to merge this and a bunch of other things soon but CI might be broken (unrelated to this PR) and I'll have to address that first.