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
Hello there. I've been integrating my C++ project into golang. I'm unable to generate decoder and unmarshaler because the project uses one-byte keys in msgpack to shorten the payload.
type ValueSegment struct {
Offset int `msg:"\x0b"`
...
}
According to spec, strings such as "\x0b"are allowed as keys.
tools/imports fails to format the generated code because it contains illegal characters which should have been escaped. The fix is trivial.
Hello there. I've been integrating my C++ project into golang. I'm unable to generate decoder and unmarshaler because the project uses one-byte keys in msgpack to shorten the payload.
According to spec, strings such as
"\x0b"
are allowed as keys.tools/imports
fails to format the generated code because it contains illegal characters which should have been escaped. The fix is trivial.The text was updated successfully, but these errors were encountered: