Tags: xiaohunqupo/cista
Tags
make variant ctor constexpr (felixguendling#125) * make variant ctor constexpr * make ~variant constexpr only for c++20 and up
add support for offset based serialization offset_ptr: stores the offset as difference between `this` and the object it points to Serializing this allows to skip the deserialization step and just use a `reinterpret_cast<T>(buf.begin())`. This is useful for example in situations with shared memory.