diff dmd/TypeInfoSharedDeclaration.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/TypeInfoSharedDeclaration.d	Sun Oct 10 01:55:35 2010 +0400
+++ b/dmd/TypeInfoSharedDeclaration.d	Sun Oct 10 03:47:23 2010 +0400
@@ -2,6 +2,7 @@
 
 import dmd.common;
 import dmd.Type;
+import dmd.Global;
 import dmd.TypeInfoDeclaration;
 import dmd.backend.dt_t;
 import dmd.backend.Util;
@@ -13,17 +14,17 @@
 	this(Type tinfo)
 	{
 		super(tinfo, 0);
-		type = Type.typeinfoshared.type;
+		type = global.typeinfoshared.type;
 	}
 
 	override void toDt(dt_t** pdt)
 	{
 		// writef("TypeInfoSharedDeclaration::toDt() %s\n", toChars());
-		dtxoff(pdt, Type.typeinfoshared.toVtblSymbol(), 0, TYnptr); // vtbl for TypeInfo_Shared
+		dtxoff(pdt, global.typeinfoshared.toVtblSymbol(), 0, TYnptr); // vtbl for TypeInfo_Shared
 		dtdword(pdt, 0);				// monitor
 		Type tm = tinfo.unSharedOf();
 		tm = tm.merge();
 		tm.getTypeInfo(null);
 		dtxoff(pdt, tm.vtinfo.toSymbol(), 0, TYnptr);
 	}
-}
\ No newline at end of file
+}