-
Notifications
You must be signed in to change notification settings - Fork 30
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
add explicit overloads #191
Conversation
* @param ds - The stream to write | ||
* @param s - The value to serialize | ||
* @tparam Stream - Type of datastream buffer | ||
* @tparam T - Type of the object contained in the basic_string |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't see a T
- copy paste error?
* @tparam T - Type of the object contained in the basic_string |
* @param ds - The stream to read | ||
* @param s - The destination for deserialized value | ||
* @tparam Stream - Type of datastream buffer | ||
* @tparam T - Type of the object contained in the basic_string |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't see a T
- copy paste error?
* @tparam T - Type of the object contained in the basic_string |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Docs are slightly out of sync with code.
Change Description
Add additional explicit stream operator overloads for
basic_string<uint8_t>
as there is a bug that fails to match againstbasic_string<T>
.Resolves #190
API Changes
Documentation Additions