aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2015-05-10 07:56:41 -0700
committerEli Bendersky <eliben@gmail.com>2015-05-10 07:56:41 -0700
commitc830da88193cff670180b57eee95712fe1f01b07 (patch)
treeed5f48cbc172ce9ea0f2b669725c987e967f6958 /CHANGES
parent6c5d15d2a035948cb6c83d7331b276a43634071f (diff)
downloadpycparser-c830da88193cff670180b57eee95712fe1f01b07.tar.gz
Adding support for empty initializer lists.
The idea comes from #79 but the implementation is somewhat different.
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES8
1 files changed, 6 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 71f4ecf..aa12591 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,7 +1,11 @@
+ Version 2.13 (??)
- - Adding support for offsetof()
- - Adding faked va_* macros (these are expected to come from stdarg.h)
+ - Added support for offsetof() the way gcc implements it (special builtin
+ that takes a type as an argument).
+ - Added faked va_* macros (these are expected to come from stdarg.h)
+ - Added a bunch more fake headers and typedefs to support parsing C projects
+ like Git and SQLite without modifications to pycparser.
+ - Added support for empty initializer lists (#79).
+ Version 2.12 (21.04.2015)