Hi, what is the reason that you are using std::byte instead of more primitive type unsigned char?
I wanted to use msgpack23 in my project and I run directly into an issue that other libraries use unsigned char, which forces me to transform std::vector<std::byte> to std::vector<unsigned char>.
I personally also never use std::byte.
Hi, what is the reason that you are using
std::byteinstead of more primitive typeunsigned char?I wanted to use msgpack23 in my project and I run directly into an issue that other libraries use
unsigned char, which forces me to transformstd::vector<std::byte>tostd::vector<unsigned char>.I personally also never use
std::byte.