comparison dmd/DVCondition.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 a8b50ff7f201
children e28b18c23469
comparison
equal deleted inserted replaced
71:8e24ef1dd139 72:2e2a5c3f943a
17 this.mod = mod; 17 this.mod = mod;
18 this.level = level; 18 this.level = level;
19 this.ident = ident; 19 this.ident = ident;
20 } 20 }
21 21
22 Condition syntaxCopy() 22 override Condition syntaxCopy()
23 { 23 {
24 return this; // don't need to copy 24 return this; // don't need to copy
25 } 25 }
26 } 26 }