comparison dmd/DebugSymbol.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 427f8aa74d28
children e28b18c23469
comparison
equal deleted inserted replaced
71:8e24ef1dd139 72:2e2a5c3f943a
20 this(Loc loc, uint level) 20 this(Loc loc, uint level)
21 { 21 {
22 assert(false); 22 assert(false);
23 } 23 }
24 24
25 Dsymbol syntaxCopy(Dsymbol s) 25 override Dsymbol syntaxCopy(Dsymbol s)
26 { 26 {
27 assert(false); 27 assert(false);
28 } 28 }
29 29
30 bool addMember(Scope sc, ScopeDsymbol s, bool memnum) 30 override bool addMember(Scope sc, ScopeDsymbol s, bool memnum)
31 { 31 {
32 assert(false); 32 assert(false);
33 } 33 }
34 34
35 void semantic(Scope sc) 35 override void semantic(Scope sc)
36 { 36 {
37 assert(false); 37 assert(false);
38 } 38 }
39 39
40 void toCBuffer(OutBuffer buf, HdrGenState* hgs) 40 override void toCBuffer(OutBuffer buf, HdrGenState* hgs)
41 { 41 {
42 assert(false); 42 assert(false);
43 } 43 }
44 44
45 string kind() 45 override string kind()
46 { 46 {
47 assert(false); 47 assert(false);
48 } 48 }
49 } 49 }