comparison dmd/PowAssignExp.d @ 154:14feb7ae01a6

* changed the build system to build a release version if the debug one compiles and enabled warnings + reduced warnings by adding appriopriate overrides + IfStatement.interpret() + ScopeStatement.interpret() + TypeSArray.constConv() + TypedefDeclaration.syntaxCopy() * fixed a bug in StringExp
author trass3r
date Wed, 15 Sep 2010 15:32:31 +0200
parents af1bebfd96a4
children e3afd1303184
comparison
equal deleted inserted replaced
148:fe2e1b93e88f 154:14feb7ae01a6
68 error("%s ^^= %s is not supported", e1.type.toChars(), e2.type.toChars() ); 68 error("%s ^^= %s is not supported", e1.type.toChars(), e2.type.toChars() );
69 return new ErrorExp(); 69 return new ErrorExp();
70 } 70 }
71 71
72 // For operator overloading 72 // For operator overloading
73 Identifier opId() 73 override Identifier opId()
74 { 74 {
75 return Id.powass; 75 return Id.powass;
76 } 76 }
77 }; 77 };