Re: Troublemaker dmd 2.061 - Templates?

2013-01-07 Thread nazriel
On Saturday, 5 January 2013 at 18:45:26 UTC, David wrote: LOL mixin template get_packets_mixin(alias Module) { template get_packets() { alias NoDuplicates!(get_packets_impl!(get_members!())) get_packets; } template get_members() { alias

Re: Troublemaker dmd 2.061 - Templates?

2013-01-05 Thread Ali Çehreli
On 01/05/2013 08:52 AM, David wrote: http://dpaste.dzfl.pl/d703d10e (code from above) That is equally incomplete. :) Could you please also provide surrounding code that would help us reproduce this issue? At the minimum, the import lines and a main() function will be helpful. Thank you,

Re: Troublemaker dmd 2.061 - Templates?

2013-01-05 Thread David
Am 05.01.2013 17:57, schrieb Ali Çehreli: On 01/05/2013 08:52 AM, David wrote: http://dpaste.dzfl.pl/d703d10e (code from above) That is equally incomplete. :) Could you please also provide surrounding code that would help us reproduce this issue? At the minimum, the import lines and a

Re: Troublemaker dmd 2.061 - Templates?

2013-01-05 Thread David
LOL mixin template get_packets_mixin(alias Module) { template get_packets() { alias NoDuplicates!(get_packets_impl!(get_members!())) get_packets; } template get_members() { alias TypeTuple!(__traits(allMembers, Module)) get_members; } private template