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
{{ message }}
This repository was archived by the owner on Apr 9, 2020. It is now read-only.
Currently, struct cn_cbor keeps uint/sint as "unsigned long".
This is for applications that don't really need 64-bit integers.
However, some do; there should be a configuration option to enable this.
The text was updated successfully, but these errors were encountered:
The size of unsigned long is compiler based and not fixed. My compiler says that unsigned long is 32 bits so I am currently failing some tests because of this issue. I also have some other casting failures during the build process which may be from similar reasons that I have not gone into yet.
What sizes are needed here? Just 32 and 64? Or do we need to have a 16 as well?
Currently, struct cn_cbor keeps uint/sint as "unsigned long".
This is for applications that don't really need 64-bit integers.
However, some do; there should be a configuration option to enable this.
The text was updated successfully, but these errors were encountered: