Titanion 0.4 + Phobos2 bug

bearophile bearophileHUGS at lycos.com
Tue Apr 28 02:06:23 PDT 2009


bearophile:
> struct Vec(T=float, size_t N=3) {
>     static assert(N > 0);

Sorry. Better to use:

> struct Vec(T=float, int N=3) {
>     static assert(N > 0);



More information about the Digitalmars-d-announce mailing list