I'm trying to do something along the lines of this using GCC 4.7 snapshot:

template <int n, int... xs>
struct foo { 
  static const int value = 0;
};

// partial specialization where n is number of ints in xs:

template <int... xs>
struct foo<sizeof...(xs), xs...> { // error: template argument ‘sizeof (xs ...)’
                                   //  involves template parameter(s)
  static const int value = 1;
};

template <int... xs>
struct foo<sizeof(xs), xs...> { // This compiles fine. sizeof(xs) is sizeof int 
                                // even though packs aren't expanded
  static const int value = 2;
};

The error is strange because sizeof instead of sizeof... works in this case. Both seem like they could be easily computed during compile time.

Is the compiler correct that I can't use sizeof... in template arguments for specialization?

link|improve this question

You mean sizeof(xs) works? I would expect a complaint about not-expanded packs. – R. Martinho Fernandes Nov 16 '11 at 5:12
@R.MartinhoFernandes Strangely it does work. – Pubby Nov 16 '11 at 5:16
Same error, simpler code: ideone.com/BBKbw. The second may be an error in the compiler, or just that sizeof(xs) == sizeof(int) and hence does not involve the template arguments. - As a practical solution: value = sizeof...(xs) == n;? – UncleBens Nov 16 '11 at 7:41
feedback

1 Answer

up vote 2 down vote accepted

I'm going to assume this is a compiler issue after reading this post.

A partially specialized non-type argument expression shall not involve a template parameter of the partial specialization except when the argument expression is a simple identifier.

Which is being disputed here.

GCC is either incorrectly unpacking the parameter pack, or evaluating sizeof prematurely.

Response to bug report I filed may be helpful.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.