comparison dmd/PeelStatement.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
12 { 12 {
13 assert(false); 13 assert(false);
14 super(Loc(0)); 14 super(Loc(0));
15 } 15 }
16 16
17 Statement semantic(Scope sc) 17 override Statement semantic(Scope sc)
18 { 18 {
19 assert(false); 19 assert(false);
20 } 20 }
21 } 21 }
22 22