SiegeLord / Tango-D2

A port of the Tango library to D2
http://siegelord.github.com/Tango-D2/
Other
90 stars 38 forks source link

tango.core.Vararg does not compile with current LDC #109

Closed n8sh closed 3 years ago

n8sh commented 3 years ago

As of at least ldc2 version 1.24.0 the import ldc.vararg does not exist.

Demonstration:

#!/usr/bin/env dub --single --compiler=ldc2
/+dub.sdl:
dependency "tango" version="~>1.0.5+2.0.85"
+/
import tango.core.Vararg;
void main()
{
}

Trying to run the above file fails with:

.../tango/core/Vararg.d(43,19): Error: module vararg is in file 'ldc/vararg.d' which cannot be read
n8sh commented 3 years ago

Fixed by #100. No release tagged since then though.

SiegeLord commented 3 years ago

I tagged a new release.