Re: MiniD 2 - Tentative Release Candidate 1

2008-12-08 Thread Jarrett Billingsley
On Mon, Dec 8, 2008 at 3:22 PM, mpt <[EMAIL PROTECTED]> wrote: > Fix compiles for the explicitly defined ctor, but not for the default. This > code gives: > minid/bind.d(1110): Error: no super class constructor for Foo > > import minid.bind; > import minid.api; > > class Foo {} > > void main() { >

Re: MiniD 2 - Tentative Release Candidate 1

2008-12-08 Thread mpt
Jarrett Billingsley wrote: On Mon, Dec 8, 2008 at 3:44 AM, mpt <[EMAIL PROTECTED]> wrote: Great stuff, but I have some trouble with the binding lib. Good! Because I wasn't ;) 1. If I don't wrap a constructor, I get an error: minid/bind.d(1101): static assert "Cannot call default constructo

Re: Bug #2429 [ was DMD 1.037 and 2.020 releases]

2008-12-08 Thread Kagamin
torhu Wrote: > Tango also opens files for writing with shared reading disabled by > default. I'm not sure why, but maybe someone can remember the reason > for it. they just forgot? :)

Re: MiniD 2 - Tentative Release Candidate 1

2008-12-08 Thread Jarrett Billingsley
On Mon, Dec 8, 2008 at 3:44 AM, mpt <[EMAIL PROTECTED]> wrote: > Great stuff, but I have some trouble with the binding lib. Good! Because I wasn't ;) > 1. If I don't wrap a constructor, I get an error: > minid/bind.d(1101): static assert "Cannot call default constructor for class > Foo; please

Re: objconv 2.03 released (includes .OBJ disassembler)

2008-12-08 Thread Robert M . Münch
On Sun, 07 Dec 2008 07:19:16 +0100, Don <[EMAIL PROTECTED]> wrote: Agner Fog's objconv utility 2.03 has just been released. It supports conversions between object file types (OMF<->COFF<->ELF<->Mach-O). [...] I think this will help a lot of DMC users as well. I sometimes have quite a problem

Re: Bug #2429 [ was DMD 1.037 and 2.020 releases]

2008-12-08 Thread Denis Koroskin
On Mon, 08 Dec 2008 18:35:32 +0300, torhu <[EMAIL PROTECTED]> wrote: Spacen Jasset wrote: I don't really consider this bug to be fixed in 1.037 and I have added comments explaining why. The bug has been marked as fixed though without any explanation as to why the shading mode (windows) and

Re: Bug #2429 [ was DMD 1.037 and 2.020 releases]

2008-12-08 Thread torhu
Spacen Jasset wrote: I don't really consider this bug to be fixed in 1.037 and I have added comments explaining why. The bug has been marked as fixed though without any explanation as to why the shading mode (windows) and permissions (linux) are to be left as they are. Tango also opens file

Re: Bug #2429 [ was DMD 1.037 and 2.020 releases]

2008-12-08 Thread Denis Koroskin
On Mon, 08 Dec 2008 18:35:32 +0300, torhu <[EMAIL PROTECTED]> wrote: Spacen Jasset wrote: I don't really consider this bug to be fixed in 1.037 and I have added comments explaining why. The bug has been marked as fixed though without any explanation as to why the shading mode (windows) and

Bug #2429 [ was DMD 1.037 and 2.020 releases]

2008-12-08 Thread Spacen Jasset
I don't really consider this bug to be fixed in 1.037 and I have added comments explaining why. The bug has been marked as fixed though without any explanation as to why the shading mode (windows) and permissions (linux) are to be left as they are.

Re: MiniD 2 - Tentative Release Candidate 1

2008-12-08 Thread mpt
Great stuff, but I have some trouble with the binding lib. 1. If I don't wrap a constructor, I get an error: minid/bind.d(1101): static assert "Cannot call default constructor for class Foo; please wrap a constructor explicitly" 2. If I wrap a constructor with no parameters (i.e. WrapCtors!(voi