comparison dmd/DefaultInitExp.d @ 72:2e2a5c3f943a

reduced warnings by adding override to the methods think this also normalizes different line endings used all over the place
author Trass3r
date Sat, 28 Aug 2010 16:19:48 +0200
parents 8c2c7b7579f8
children e28b18c23469
comparison
equal deleted inserted replaced
71:8e24ef1dd139 72:2e2a5c3f943a
18 this.subop = subop; 18 this.subop = subop;
19 } 19 }
20 20
21 abstract Expression resolve(Loc loc, Scope sc); 21 abstract Expression resolve(Loc loc, Scope sc);
22 22
23 void toCBuffer(OutBuffer buf, HdrGenState* hgs) 23 override void toCBuffer(OutBuffer buf, HdrGenState* hgs)
24 { 24 {
25 buf.writestring(Token.toChars(subop)); 25 buf.writestring(Token.toChars(subop));
26 } 26 }
27 } 27 }