comparison dmd/scope.c @ 215:a58d8f4b84df trunk

[svn r231] Changed: warnings are no longer treated as an error. Added some comments and cleaned up CallExp::toElem a tiny bit. Fixed: struct literals always reported inplace assignment even if they allocated a temporary. Fixed: passing stuff to a D-style vararg which did inplace assignment was generated suboptimal code.
author lindquist
date Tue, 03 Jun 2008 13:51:09 +0200
parents 5acec6b2eef8
children d4e95db0e62b
comparison
equal deleted inserted replaced
214:629cfc1e7b77 215:a58d8f4b84df
253 ident == Id::length && 253 ident == Id::length &&
254 sc->scopesym->isArrayScopeSymbol() && 254 sc->scopesym->isArrayScopeSymbol() &&
255 sc->enclosing && 255 sc->enclosing &&
256 sc->enclosing->search(loc, ident, NULL)) 256 sc->enclosing->search(loc, ident, NULL))
257 { 257 {
258 // WTF ?
258 if (global.params.warnings) 259 if (global.params.warnings)
259 fprintf(stdmsg, "warning - "); 260 fprintf(stdmsg, "warning - ");
260 error(s->loc, "array 'length' hides other 'length' name in outer scope"); 261 error(s->loc, "array 'length' hides other 'length' name in outer scope");
261 } 262 }
262 263