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
When compiling on an ARMv6 device, I noticed some errors regarding redefinition of the two aforementioned methods.
This is because unsigned int and size_t appear to be synonymous on this platform. This will reliably break compilation.
I may suggest that the method be declared with an unsigned int signature in addition to an unsigned long signature rather than size_t, as size_t is not guaranteed to be different from unsigned int.
The text was updated successfully, but these errors were encountered:
When compiling on an ARMv6 device, I noticed some errors regarding redefinition of the two aforementioned methods.
This is because
unsigned int
andsize_t
appear to be synonymous on this platform. This will reliably break compilation.I may suggest that the method be declared with an
unsigned int
signature in addition to anunsigned long
signature rather thansize_t
, assize_t
is not guaranteed to be different fromunsigned int
.The text was updated successfully, but these errors were encountered: