ThorsSerializer icon indicating copy to clipboard operation
ThorsSerializer copied to clipboard

C++ Serialization library for JSON

Results 7 ThorsSerializer issues
Sort by recently updated
recently updated
newest added

Now you need to include "ThorsSerializerUtil.h" and "SerializeConfig.h" in order to fix undefined behaviours

When I make trait for type with static memder of standard type (int, double, etc.) it works fine. When I make trait for type1 with static memder of non-standard type2...

I was trying to make a game using ECS framework. It's better to use POD as components, in order to improve performance and increase stability of the game. So I...

**Is your feature request related to a problem? Please describe.** Currently when using polymorphic types, only unique_ptr's work. The documentation on https://lokiastari.com/ThorsSerializer/#Pointers also states that they are not supported. I...

Fix for issue https://github.com/Loki-Astari/ThorsSerializer/issues/78

When an invalid enum class value is serialized, it doesn't throw an exception, instead undefined behavior occurs. **Code:** ``` #include #include "ThorSerialize/JsonThor.h" #include "ThorSerialize/Traits.h" enum class ENUM : uint8_t {...