Philippe Sigaud <philippe.sigaud at gmail.com> wrote:
> And, looking in my codebase, here is what I'm using ;)
>
> template Init(T...)
> {
> T Init;
> }
Doh. I believe this is slightly better, though:
template Init( T... ) {
enum T Init;
}
:p
--
Simen