Skip to content
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

Fix pointers to alias types #187

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Feb 4, 2020

  1. Fix pointers to alias types

    This commit fixes pointers to type aliases which are currently not
    supported.
    
    The new test cases will fail with:
      jsonapi: Can't unmarshal foo (string) to struct field `String`, which is a pointer to `StringType (string)`
    
    One other method to fix this when you are able to modify your types is:
    
      type StringType = string
    
    This is the new (since Go 1.9) way to declare type aliasses which treats
    the types differently when using reflect.
    See: https://github.com/golang/example/tree/master/gotypes#named-types
    erikdubbelboer committed Feb 4, 2020
    Configuration menu
    Copy the full SHA
    ec5ed79 View commit details
    Browse the repository at this point in the history