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
There is a reason why empty struct is not allowed for external types. External type is meant to be serialisable to transfer between languages. struct FollyIOBuf in your example is internal type which keeps some data to serialise/deserialise and then convert to std::unique_ptr<Foo>
doesn't work:
workaround:
I think a better solution would be to allow "external typealiases".
The text was updated successfully, but these errors were encountered: