On Wednesday, 10 January 2018 at 18:45:17 UTC, Adam D. Ruppe wrote:
On Wednesday, 10 January 2018 at 18:31:17 UTC, 12345swordy wrote:
    for(int x = 0; x < TL.length; x++)
    {
      auto b = [__traits(allMembers, TL[0])];


Simple mistake there...

I noticed, can't fix it cause it won't let me edit it.

This auto b = [__traits(allMembers, TL[0])];
is meant to be auto b = [__traits(allMembers, TL[x])];

Reply via email to