comparison dmd/TraitsExp.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 80f4806ffa13
children cd48cb899aee
comparison
equal deleted inserted replaced
177:1475fd394c9e 178:e3afd1303184
76 76
77 Objects args; 77 Objects args;
78 78
79 this(Loc loc, Identifier ident, Objects args) 79 this(Loc loc, Identifier ident, Objects args)
80 { 80 {
81 register();
81 super(loc, TOK.TOKtraits, this.sizeof); 82 super(loc, TOK.TOKtraits, this.sizeof);
82 this.ident = ident; 83 this.ident = ident;
83 this.args = args; 84 this.args = args;
84 } 85 }
85 86