cereal
cereal copied to clipboard
support cereal::make_nvp(const char8_t *name, ..)
C++20 makes u8"xxxx" as char8_t array which is a distinct type from char.
cereal::make_nvp(u8"名字", vec); // this gives compiler error
Can we support it, should be a simple fix.