Open
Conversation
b44e833 to
2154e4f
Compare
|
Hi, I just posted 2 issues #295 #294 to ask for _Defer and _Countof supports, and it seems you have already supported _Countof. Thank you for your effort! For your MR, I think countof should not be a keyword for now, it's defined as a macro in stdcountof.h. maybe in the future it will become a keyword, but not now. |
Author
|
Hey! |
Yes I think so. |
3b34bb4 to
216df82
Compare
This commit adds support for new types, preprocessor directives, keywords added in C23. Also allows arbitrary amount of types to be passed into a macro, enhancing support for "generic" macros in C23/C2Y (N3037, N3332). Keywords, types, directives added: - "auto" type - _BitInt(N), _FloatN, FloatNx, _DecimalN, _DecimalNx - typeof, typeof_unqual, countof, _Countof, alignof, alignas, static_assert, _Static_assert - #embed, #warning, #error, #elifdef, #elifndef
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds missing C23 support.
Closes #290
Closes #273
Closes #261