diff dmd/backend/symtab_t.d @ 174:af724d3510d7

lot os toCBuffer methods implemented moved shared Type.* stuff into Global
author korDen
date Sun, 10 Oct 2010 03:47:23 +0400
parents e28b18c23469
children
line wrap: on
line diff
--- a/dmd/backend/symtab_t.d	Sun Oct 10 01:55:35 2010 +0400
+++ b/dmd/backend/symtab_t.d	Sun Oct 10 03:47:23 2010 +0400
@@ -5,9 +5,11 @@
 import dmd.backend.Util;
 import dmd.backend.SYMIDX;
 
-struct symtab_t
+struct SYMTAB_S
 {
     SYMIDX top;			// 1 past end
     SYMIDX symmax;		// max # of entries in tab[] possible
     Symbol** tab;		// local Symbol table
-}
\ No newline at end of file
+}
+
+alias SYMTAB_S symtab_t;
\ No newline at end of file