diff dmd/TypeClass.d @ 178:e3afd1303184

Many small bugs fixed Made all classes derive from TObject to detect memory leaks (functionality is disabled for now) Began work on overriding backend memory allocations (to avoid memory leaks)
author korDen
date Sun, 17 Oct 2010 07:42:00 +0400
parents fa9a71a9f5a8
children b0d41ff5e0df
line wrap: on
line diff
--- a/dmd/TypeClass.d	Sun Oct 10 10:38:55 2010 +0400
+++ b/dmd/TypeClass.d	Sun Oct 17 07:42:00 2010 +0400
@@ -68,17 +68,11 @@
 
     this(ClassDeclaration sym)
 	{
+		register();
 		super(TY.Tclass);
 		this.sym = sym;
 	}
 
-version (DumbClone) {
-} else {
-	Type clone()
-	{
-		assert(false);
-	}
-}
     override ulong size(Loc loc)
 	{
 		return PTRSIZE;