-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
uuid::repr_type is inaccessible #170
Comments
|
Ok. But calling the user-defined conversion would then always require a typedef, since conversion-type-id does not allow array-brackets (https://en.cppreference.com/w/cpp/language/cast_operator). |
The conversion to Out of curiosity, for what would you use this function? |
I've got a template-based serialization-library (not Boost.Serialization), which works out-of-the box, when it can deduce the full array-information (type and size). It used to work with code like |
The new internal
data_type
has the twopublic
operatorsbut their return type
repr_type
isprivate
and therefore inaccessible from outside.As the operators are not used internally, I assume, they're to be used be users, so
repr_type
should also bepublic
.The text was updated successfully, but these errors were encountered: