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
Int
E.g.
enum <WORD> tagID { M_TAG0, // should be 0 M_TAG1 = 0xff01, M_TAG2, M_TAG3, };
M_TAG0
UShort(0 [0000])
M_TAG1
Int(65281 [0000ff01])
This was opened due to #78
The text was updated successfully, but these errors were encountered:
Added test that should verify if #80 is fixed, will work on fixing it
84466da
Successfully merging a pull request may close this issue.
E.g.
M_TAG0
is assigned the correct valueUShort(0 [0000])
M_TAG1
is assigned the incorrect valueInt(65281 [0000ff01])
M_TAG1
have an incorrect type ofInt
This was opened due to #78
The text was updated successfully, but these errors were encountered: