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

2010-02-14 Thread Don
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 : it crashes

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: 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