You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently Blob IDL type is represented in C++ as std::shared_ptr<std::vector<uint8_t>>, making it nullable in C++ even if the IDL declaration is not marked as such.
An alternative way to represent Blob in C++ needs to be developed.
Currently
BlobIDL type is represented in C++ asstd::shared_ptr<std::vector<uint8_t>>, making it nullable in C++ even if the IDL declaration is not marked as such.An alternative way to represent
Blobin C++ needs to be developed.