Jump to page: 1 27  
Page
Thread overview
dmd 1.075 and 2.060 release
Aug 02, 2012
Walter Bright
Aug 02, 2012
bearophile
Aug 02, 2012
Peter Alexander
Aug 02, 2012
Walter Bright
Aug 02, 2012
Walter Bright
Aug 02, 2012
Andrej Mitrovic
Aug 03, 2012
Mike Parker
Aug 03, 2012
Mike Parker
Aug 02, 2012
Timon Gehr
Aug 02, 2012
Paul D. Anderson
Aug 02, 2012
Walter Bright
Aug 03, 2012
Jacob Carlborg
Aug 02, 2012
dnewbie
Aug 02, 2012
Philippe Sigaud
Aug 02, 2012
Andrej Mitrovic
Aug 02, 2012
Peter Alexander
Aug 02, 2012
Dmitry Olshansky
Aug 02, 2012
Peter Alexander
Aug 02, 2012
Jacob Carlborg
Aug 03, 2012
Jacob Carlborg
Aug 02, 2012
Marco Leise
Aug 02, 2012
Walter Bright
Aug 02, 2012
Marco Leise
Aug 03, 2012
Walter Bright
Aug 03, 2012
Marco Leise
Aug 03, 2012
Walter Bright
Aug 03, 2012
Jordi Sayol
Aug 03, 2012
Jacob Carlborg
Aug 03, 2012
Jordi Sayol
Aug 03, 2012
Jacob Carlborg
Aug 03, 2012
Jordi Sayol
Aug 03, 2012
Jacob Carlborg
Aug 04, 2012
Marco Leise
Aug 02, 2012
Piotr Szturmaj
Aug 02, 2012
Jonathan M Davis
Aug 02, 2012
Jonathan M Davis
Aug 03, 2012
Leandro Lucarella
Aug 03, 2012
Jacob Carlborg
Aug 03, 2012
Mike James
Aug 03, 2012
Jonathan M Davis
Aug 03, 2012
Mike James
Aug 03, 2012
Jacob Carlborg
Aug 05, 2012
1100110
Aug 05, 2012
Jacob Carlborg
Aug 03, 2012
Philippe Sigaud
Aug 03, 2012
Dmitry Olshansky
Aug 03, 2012
Philippe Sigaud
Aug 03, 2012
Andrej Mitrovic
Aug 03, 2012
Philippe Sigaud
Aug 04, 2012
Jonathan M Davis
Aug 03, 2012
F i L
Aug 03, 2012
Jonathan M Davis
Aug 03, 2012
deadalnix
Aug 03, 2012
kraybourne
Aug 04, 2012
Jacob Carlborg
Aug 05, 2012
Walter Bright
Aug 05, 2012
Jordi Sayol
Aug 05, 2012
Jacob Carlborg
Aug 08, 2012
Nicholas Londey
May 04, 2016
WebFreak001
May 05, 2016
xenon325
August 02, 2012
Another big pile of bug fixes. More contributors than ever!

http://www.digitalmars.com/d/1.0/changelog.html
http://ftp.digitalmars.com/dmd.1.075.zip

http://www.digitalmars.com/d/2.0/changelog.html
https://github.com/downloads/D-Programming-Language/dmd/dmd.2.060.zip
August 02, 2012
Walter Bright:
> Another big pile of bug fixes. More contributors than ever!

And there is the first step of this change too:
http://d.puremagic.com/issues/show_bug.cgi?id=6652

Bye,
bearophile
August 02, 2012
Nice update, but broke Derelict2 :-(

Regression: delegates with default arguments are broken (worked in 2.059)


void foo(void delegate(int x = 0) fun)
{
	fun(); // Error: expected 1 function arguments, not 0
}
August 02, 2012
On 8/2/2012 12:40 PM, Peter Alexander wrote:
> Nice update, but broke Derelict2 :-(
>
> Regression: delegates with default arguments are broken (worked in 2.059)
>
>
> void foo(void delegate(int x = 0) fun)
> {
>      fun(); // Error: expected 1 function arguments, not 0
> }

Known issue, it's an inevitable result (it never worked right anyway):

http://d.puremagic.com/issues/show_bug.cgi?id=8454

P.S. You might want to monitor the beta releases.
August 02, 2012
On 8/2/2012 12:42 PM, Walter Bright wrote:
> http://d.puremagic.com/issues/show_bug.cgi?id=8454

corrected url:

http://d.puremagic.com/issues/show_bug.cgi?id=3866
August 02, 2012
On 02-08-2012 21:40, Peter Alexander wrote:
> Nice update, but broke Derelict2 :-(
>
> Regression: delegates with default arguments are broken (worked in 2.059)
>
>
> void foo(void delegate(int x = 0) fun)
> {
>      fun(); // Error: expected 1 function arguments, not 0
> }

I think it was decided that this was not a regression, if memory serves. I believe the reasoning was that default parameters on delegates just don't make sense in the general case, so it wasn't worth fixing.

I could be wrong. I can't seem to find the relevant bug. Anyone?

-- 
Alex Rønne Petersen
alex@lycus.org
http://lycus.org
August 02, 2012
On 02-08-2012 21:44, Alex Rønne Petersen wrote:
> On 02-08-2012 21:40, Peter Alexander wrote:
>> Nice update, but broke Derelict2 :-(
>>
>> Regression: delegates with default arguments are broken (worked in 2.059)
>>
>>
>> void foo(void delegate(int x = 0) fun)
>> {
>>      fun(); // Error: expected 1 function arguments, not 0
>> }
>
> I think it was decided that this was not a regression, if memory serves.
> I believe the reasoning was that default parameters on delegates just
> don't make sense in the general case, so it wasn't worth fixing.
>
> I could be wrong. I can't seem to find the relevant bug. Anyone?
>

Oh, Walter already replied with the relevant URL. :)

-- 
Alex Rønne Petersen
alex@lycus.org
http://lycus.org
August 02, 2012
On 02-08-2012 21:18, Walter Bright wrote:
> Another big pile of bug fixes. More contributors than ever!
>
> http://www.digitalmars.com/d/1.0/changelog.html
> http://ftp.digitalmars.com/dmd.1.075.zip
>
> http://www.digitalmars.com/d/2.0/changelog.html
> https://github.com/downloads/D-Programming-Language/dmd/dmd.2.060.zip

Changelog is not updated?

-- 
Alex Rønne Petersen
alex@lycus.org
http://lycus.org
August 02, 2012
On Thursday, 2 August 2012 at 19:19:04 UTC, Walter Bright wrote:
> Another big pile of bug fixes. More contributors than ever!
>
> http://www.digitalmars.com/d/1.0/changelog.html
> http://ftp.digitalmars.com/dmd.1.075.zip
>
> http://www.digitalmars.com/d/2.0/changelog.html
> https://github.com/downloads/D-Programming-Language/dmd/dmd.2.060.zip

The 1.0 changelog link correctly displays version 1.075, but the 2.0 changelog still displays version 2.059

Paul

August 02, 2012
On 8/2/12, Walter Bright <newshound2@digitalmars.com> wrote:
> Known issue, it's an inevitable result (it never worked right anyway):
>
> http://d.puremagic.com/issues/show_bug.cgi?id=8454
>
> P.S. You might want to monitor the beta releases.
>

I've posted about that exact Derelict case in Issue 3866 during the betas, but nobody replied.

But a library solution could be made if one wants to use an inner alias. Maybe we even have one in Phobos? Something like:

void foo(void delegate(string s, bool isTrue) dg)
{
    alias DefVal!(dg, true) deg;
    // use deg as if it were dg() with default for 'isTrue'
}

Not the most readable code.. but it's similar to curry (except
backwards) I guess.
« First   ‹ Prev
1 2 3 4 5 6 7