Adding support for empty initializer lists.
The idea comes from #79 but the implementation is somewhat different.
diff --git a/tests/test_c_parser.py b/tests/test_c_parser.py
index ea624d9..c1bf5be 100755
--- a/tests/test_c_parser.py
+++ b/tests/test_c_parser.py
@@ -1096,6 +1096,9 @@
['Constant', 'int', '8'],
['Constant', 'int', '9']])
+ d21 = 'long ar[4] = {};'
+ self.assertEqual(self.get_decl_init(d21), [])
+
d3 = 'char p = j;'
self.assertEqual(self.get_decl(d3),
['Decl', 'p', ['TypeDecl', ['IdentifierType', ['char']]]])