We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
//msgp:unmarshal ignore MyType doesn't work, the method is still generated. gen/unmarshal.go requires the following change:
//msgp:unmarshal ignore MyType
gen/unmarshal.go
--- /dev/null 2017-03-31 14:37:50.937037313 +1100 +++ gen/unmarshal.go 2017-03-31 14:37:57.956748203 +1100 @@ -32,6 +32,10 @@ if !u.p.ok() { return u.p.err } + p = u.applyall(p) + if p == nil { + return nil + } if !IsPrintable(p) { return nil }
The text was updated successfully, but these errors were encountered:
I'm being bitten by this as well
Sorry, something went wrong.
No branches or pull requests
//msgp:unmarshal ignore MyType
doesn't work, the method is still generated.gen/unmarshal.go
requires the following change:The text was updated successfully, but these errors were encountered: