Re: Template mixins has no effect

2014-05-22 Thread Nordlöw
What is wrong? Ping, anybody?

Template mixins has no effect

2014-05-04 Thread Nordlöw
I'm trying to improve https://github.com/nordlow/justd/blob/master/enums.d through use of template mixins http://dlang.org/template-mixin.html to improve EnumUnion as follows: struct EnumUnion(E...) { alias OriginalType = CommonOriginalType!E; alias U = UnionEnum!(E);// Wrapped

Re: Template mixins has no effect

2014-05-04 Thread Nordlöw
What is wrong? For some reason the mixin declarations for op* are not imported into the calling scope when others are. Compiler bug?