New D tool releases

tsbockman via Digitalmars-d-announce digitalmars-d-announce at puremagic.com
Thu Jan 14 02:00:47 PST 2016


On Thursday, 14 January 2016 at 09:05:09 UTC, Brian Schott wrote:
> Please see the Github links for a list of changes and issues 
> resolved.
>
> You may notice that they're all in Dub now. The real Brian is 
> in cryo-stasis in case we need him later. In order to not 
> arouse too much suspicion about shape-shifters these projects 
> can still be built with git and make.
>
> DCD: Auto-completion system
> 0.7.4
> http://code.dlang.org/packages/dcd
> https://github.com/Hackerpilot/DCD/releases/tag/v0.7.4

Trying to build DCD with LDC, I get:
     ../msgpack-d-1.0.0-beta.2/src/msgpack.d(102): Error: cannot 
implicitly convert expression (classInfo.init()[]) of type 
const(void)[] to byte[]

I fixed it by changing:
     (cast(byte*)obj)[0..classInfo.init.length] = classInfo.init[];
To:
     (cast(void*)obj)[0..classInfo.init.length] = classInfo.init[];

Aside from that, everything else builds without any tweaks.


More information about the Digitalmars-d-announce mailing list