-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
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
static_assert
is C23, rather use _Static_assert
#61
Comments
At the same time CMakeLists ask only for C11: Line 5 in 7a85414
|
That's not really correct. |
Build fails for me with gcc-13 if |
Yes, I never said that wouldn't work (though |
static_assert
is C23, so it won’t work unless the standard is forced, but_Static_assert
works fine.Ref: https://en.cppreference.com/w/c/language/_Static_assert
The text was updated successfully, but these errors were encountered: