Converting a POD struct to a class at compile-time ?

Klb via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Wed Jul 16 11:29:02 PDT 2014


On Wednesday, 16 July 2014 at 18:09:10 UTC, Adam D. Ruppe wrote:
> On Wednesday, 16 July 2014 at 17:43:03 UTC, Klb wrote:
>
>>    auto names = __traits(allMembers, S);
>
>> Error: static variable _names_field_0 cannot be read at 
>> compile time.
>
> The problem there is names is a regular runtime variable and 
> mixins need to use compile time stuff. If you make that enum 
> instead of auto, it'll probably work.

Nice ! It works. :)



More information about the Digitalmars-d-learn mailing list