diff dmd/TypeInfoConstDeclaration.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 e3afd1303184
line wrap: on
line diff
--- a/dmd/TypeInfoConstDeclaration.d	Sun Oct 10 01:55:35 2010 +0400
+++ b/dmd/TypeInfoConstDeclaration.d	Sun Oct 10 03:47:23 2010 +0400
@@ -3,7 +3,7 @@
 import dmd.common;
 import dmd.Type;
 import dmd.TypeInfoDeclaration;
-import dmd.Type;
+import dmd.Global;
 import dmd.backend.dt_t;
 import dmd.backend.Util;
 import dmd.backend.TYM;
@@ -14,13 +14,13 @@
 	this(Type tinfo)
 	{
 		super(tinfo, 0);
-	    type = Type.typeinfoconst.type;
+	    type = global.typeinfoconst.type;
 	}
 
 	override void toDt(dt_t** pdt)
 	{
 		//printf("TypeInfoConstDeclaration.toDt() %s\n", toChars());
-		dtxoff(pdt, Type.typeinfoconst.toVtblSymbol(), 0, TYnptr); // vtbl for TypeInfo_Const
+		dtxoff(pdt, global.typeinfoconst.toVtblSymbol(), 0, TYnptr); // vtbl for TypeInfo_Const
 		dtdword(pdt, 0);			    // monitor
 		Type tm = tinfo.mutableOf();
 		tm = tm.merge();