comparison dmd/FileExp.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 10317f0c89a5
children e28b18c23469
comparison
equal deleted inserted replaced
71:8e24ef1dd139 72:2e2a5c3f943a
14 { 14 {
15 assert(false); 15 assert(false);
16 super(loc, TOK.init, 0, e); 16 super(loc, TOK.init, 0, e);
17 } 17 }
18 18
19 Expression semantic(Scope sc) 19 override Expression semantic(Scope sc)
20 { 20 {
21 assert(false); 21 assert(false);
22 } 22 }
23 23
24 void toCBuffer(OutBuffer buf, HdrGenState* hgs) 24 override void toCBuffer(OutBuffer buf, HdrGenState* hgs)
25 { 25 {
26 assert(false); 26 assert(false);
27 } 27 }
28 } 28 }
29 29