On 15.04.2016 20:55, Eric wrote:
  13 class C : const (I!(J))

I think this const is ignored by the compiler.

  15    F!(J) m;

A little tip: You can omit the parentheses of template instantiations when the argument is a single identifier. That is, `F!(J)` can be written as `F!J`.

Reply via email to