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
csmake test 5 fails with
/usr/include/runetype.h:92: error: syntax error
The text was updated successfully, but these errors were encountered:
Line 92 of runetype.h is
extern _Thread_local const _RuneLocale *_ThreadRuneLocale;
It seems that _Thread_local isn't being handled correctly.
_Thread_local
Sorry, something went wrong.
Add tests for _Thread_local
3230152
Issue: #13
CScout wrongly objects
/usr/include/runetype.h:92: error: at most one storage class can be specified
However, const is a storage class qualifier, not specifier.
const
It's actually the combination of _Thread_local with static. See #14.
static
dspinellis
No branches or pull requests
csmake test 5 fails with
The text was updated successfully, but these errors were encountered: