Strange Mixin issue

Ali Çehreli acehreli at yahoo.com
Wed Mar 5 15:06:14 PST 2014


On 03/05/2014 03:04 PM, Ali Çehreli wrote:

> template Do(T...)
> {
>      mixin DoImpl!(TypeTuple!(typeof(this), T));

Actually, TypeTuple is not needed there:

     mixin DoImpl!(typeof(this), T);

Ali



More information about the Digitalmars-d-learn mailing list