Reading Dicom files in Dlang

KnightMare black80 at bk.ru
Fri May 31 13:49:02 UTC 2019


>   struct Range {
>     private __vector(ushort) _outer;
>     private size_t _a, _b;
>
>     this(vector(ushort) data, size_t a, size_t b) {   // 
> <<<<<<<< line 457
>       _outer = data;
>       _a = a;
>       _b = b;
>     }

imo problem is in string
private __vector(ushort)_outer;
it looks like template(vector!ushort) or function or this is 
vector from core.simd
and replacing it to private long _outer; fix the problem
paste code imebra.d and imebra_im.d to someplace


More information about the Digitalmars-d-learn mailing list