summaryrefslogtreecommitdiff
path: root/pycparser/_c_ast.cfg
diff options
context:
space:
mode:
authorVitaly Cheptsov <4348897+vit9696@users.noreply.github.com>2021-08-31 16:05:01 +0300
committerGitHub <noreply@github.com>2021-08-31 06:05:01 -0700
commitb1dbdc5e21346de0fec7fbb814dedbe1585bcfec (patch)
treef39a2416a742dcbf4193b96e7f8aa10c38d2618e /pycparser/_c_ast.cfg
parent302855a6f30bdec33614a145f1dbe031316f351a (diff)
downloadpycparser-b1dbdc5e21346de0fec7fbb814dedbe1585bcfec.tar.gz
Introduce partial C11 support (#429)
* Introduce partial C11 support Implemented _Noreturn, _Static_assert, _Thread_local. Also fixed tests with preprocessor on macOS. * Add more tests Co-authored-by: vit9696 <vit9696@users.noreply.github.com>
Diffstat (limited to 'pycparser/_c_ast.cfg')
-rw-r--r--pycparser/_c_ast.cfg2
1 files changed, 2 insertions, 0 deletions
diff --git a/pycparser/_c_ast.cfg b/pycparser/_c_ast.cfg
index 2f5b087..e9b5685 100644
--- a/pycparser/_c_ast.cfg
+++ b/pycparser/_c_ast.cfg
@@ -152,6 +152,8 @@ PtrDecl: [quals, type*]
Return: [expr*]
+StaticAssert: [cond*, message*]
+
# name: struct tag name
# decls: declaration of members
#