diff dmd/TypeInfoDelegateDeclaration.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/TypeInfoDelegateDeclaration.d	Sun Oct 10 01:55:35 2010 +0400
+++ b/dmd/TypeInfoDelegateDeclaration.d	Sun Oct 10 03:47:23 2010 +0400
@@ -5,6 +5,7 @@
 import dmd.TypeInfoDeclaration;
 import dmd.TypeDelegate;
 import dmd.TY;
+import dmd.Global;
 
 import dmd.backend.dt_t;
 import dmd.backend.Util;
@@ -15,13 +16,13 @@
 	this(Type tinfo)
 	{
 		super(tinfo, 0);
-	    type = Type.typeinfodelegate.type;
+	    type = global.typeinfodelegate.type;
 	}
 
 	override void toDt(dt_t** pdt)
 	{
 		//printf("TypeInfoDelegateDeclaration.toDt()\n");
-		dtxoff(pdt, Type.typeinfodelegate.toVtblSymbol(), 0, TYnptr); // vtbl for TypeInfo_Delegate
+		dtxoff(pdt, global.typeinfodelegate.toVtblSymbol(), 0, TYnptr); // vtbl for TypeInfo_Delegate
 		dtdword(pdt, 0);			    // monitor
 
 		assert(tinfo.ty == Tdelegate);