parser: Remove the unused attribute alignment from struct declaration_specifiers_t.
[cparser] / symbol_table_t.h
index f175ca6..3d44ae0 100644 (file)
@@ -1,3 +1,7 @@
+/*
+ * This file is part of cparser.
+ * Copyright (C) 2012 Matthias Braun <matze@braunis.de>
+ */
 #ifndef SYMBOL_TABLE_T_H
 #define SYMBOL_TABLE_T_H
 
@@ -5,13 +9,14 @@
 #include "symbol.h"
 
 #define HashSet          symbol_table_t
-#define HashSetIterator  symbol_table_iterator_t
 #define HashSetEntry     symbol_table_hash_entry_t
 #define ValueType        symbol_t*
 #include "adt/hashset.h"
 #undef ValueType
 #undef HashSetEntry
-#undef HashSetIterator
 #undef HashSet
 
+typedef struct symbol_table_iterator_t  symbol_table_iterator_t;
+typedef struct symbol_table_t           symbol_table_t;
+
 #endif