Re: How DMD's -w *Prevents* Me From Seeing My Warnings

2010-02-13 Thread strtr
daoryn Wrote: > > size_t is the default type to use as index on arrays, since the "length" > property of arrays is of size_t. Since you are overloading the Index > operator, its only logical the type of the index to be size_t. > Ah, luckily this code is not really used as it should be an opcall

Re: use variant as associative array

2010-02-13 Thread GG
We can't assign value to Variant associative array because there is a bug, I found this : http://d.puremagic.com/issues/show_bug.cgi?id=2451 So the issue is already assigned...I'm waiting. Yes there is a .length for associative array and now aa.length works with the last fix : http://d.puremagic

Re: How DMD's -w *Prevents* Me From Seeing My Warnings

2010-02-13 Thread daoryn
strtr Wrote: > or: Why does dmd keep on crashing on my code :) > (I blame it on the average D programming; they don't write enough crappy code > ) > > After reading the -w post I tried using the -w switch again and it also > prevents me from seeing all my warning, but for a different reason :

How DMD's -w *Prevents* Me From Seeing My Warnings

2010-02-13 Thread strtr
or: Why does dmd keep on crashing on my code :) (I blame it on the average D programming; they don't write enough crappy code ) After reading the -w post I tried using the -w switch again and it also prevents me from seeing all my warning, but for a different reason : it crashes dmd :( Before