cereal
cereal copied to clipboard
A C++11 library for serialization
```shell 34397% tests passed, 1 tests failed out of 39 344 345Total Test time (real) = 196.55 sec 346 347The following tests FAILED: 348 38 - test_cmake_config_module (Failed) 349Errors while...
```shell # ... Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. 3 warnings treated as errors egrep '\b(warning|error):' .run-clang-tidy.log...
I am using this library https://github.com/greg7mdp/parallel-hashmap, and now have a need to serialize my data. I looked at the implementation of the `std::unordered_map` and followed that example to serialize parallel...
For my application, I'd like to show an error message when attempting to open a JSONInputArchive on a malformed, or otherwise erroneous json file. This additional, optional parameter in JSONInputArchive's...
Hi, I'm trying to get serialization of optional (either boost or std) type with no default constructor. (I didn't find any PR doing this, but let me know if I'm...
Same fallthrough warnings from regex.h are ignored, maybe they should be modified too.
Is this a known issue? Anyone has plan to address this vulnerability? https://www.whitesourcesoftware.com/vulnerability-database/CVE-2020-11105
Hi, And thanks for a great library! I've got the following problem. ```cpp std::string jsonStr; rapidjson::Document doc; doc.Parse(jsonStr.data()); if (doc["type"].GetString() == "foo") { // "type" field can't be renamed Foo...
I have the following code: **derived.h:** ```c++ #include "base.h" #include "cereal/archives/json.hpp" #include "cereal/access.hpp" #include "cereal/types/polymorphic.hpp" class derived : base { public: template void serialize(Archive& archive) { archive(cereal::virtual_base_class(this), CEREAL_NVP(x)); } template...
I'm trying to use cereal library in my C++20 pet project (using current gcc 10 snapshot). As far as the library is considered there's only one issue (http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p0806r2.html), implicit 'this'...