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
If I specify
int32_t lat,lng
instead of
long lat,lng
I get
error: invalid conversion from 'int32_t*' {aka 'int*'} to 'long int*' [-fpermissive]
same with age : it does not accept uint32_t but only unsigned long
age
uint32_t
unsigned long
tried all other variants (uint16_t, int16_t etc), nothing works. It specifically needs long and unsigned long.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If I specify
int32_t lat,lng
instead of
long lat,lng
I get
error: invalid conversion from 'int32_t*' {aka 'int*'} to 'long int*' [-fpermissive]
same with
age
: it does not acceptuint32_t
but onlyunsigned long
tried all other variants (uint16_t, int16_t etc), nothing works. It specifically needs long and unsigned long.
The text was updated successfully, but these errors were encountered: