DMD 1.032 and 2.016 releases
bearophile
bearophileHUGS at lycos.com
Wed Jul 9 02:57:31 PDT 2008
Walter Bright Wrote:
> Mostly bug fixing.
It seems my libs work again with this version (1.032), I've had to change just two things in a 10-minutes debugging, than you.
I have had to change this line (inside a function template, T is a type, often it's an array, but it can be a void array too):
static if(!is( typeof(T) == void[0] )) {
To:
static if(!is( T == void[0] )) {
At a first test, it seems the compiled executables are 2-3+ times bigger than the ones produced by 1.029.
Bye,
bearophile
More information about the Digitalmars-d-announce
mailing list