comparison dmd/ModuleInfoDeclaration.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 43073c7c7769
comparison
equal deleted inserted replaced
71:8e24ef1dd139 72:2e2a5c3f943a
16 { 16 {
17 assert(false); 17 assert(false);
18 super(Loc(0), null, null, null); 18 super(Loc(0), null, null, null);
19 } 19 }
20 20
21 Dsymbol syntaxCopy(Dsymbol) 21 override Dsymbol syntaxCopy(Dsymbol)
22 { 22 {
23 assert(false); 23 assert(false);
24 } 24 }
25 25
26 void semantic(Scope sc) 26 override void semantic(Scope sc)
27 { 27 {
28 assert(false); 28 assert(false);
29 } 29 }
30 30
31 void emitComment(Scope *sc) 31 void emitComment(Scope *sc)
32 { 32 {
33 assert(false); 33 assert(false);
34 } 34 }
35 35
36 Symbol* toSymbol() 36 override Symbol* toSymbol()
37 { 37 {
38 assert(false); 38 assert(false);
39 } 39 }
40 } 40 }