struct Bar {
  enum { Special = 4 };
};

template<class T, int K> struct Foo {};
template<class T> struct Foo<T,T::Special> {};

Usage:

Foo<Bar> aa;

fails to compile using gcc 4.1.2 It complains about the usage of T::Special for partial specilization of Foo. If Special was a class the solution would be to a typename in front of it. Is there something equivalent to it for enums (or integers)?

Thanks,

Altan

link|improve this question
5  
An interesting question. – James McNellis Dec 28 '10 at 4:58
If you replace T::Special with a concrete integer (99, say), it still doesn't compile under g++ 4.4.0: 'wrong number of template arguments (1, should be 2)'.I realise this is a separate issue, but shouldn't the compiler accept this? – TonyK Dec 28 '10 at 8:35
feedback

2 Answers

Since that is not allowed by C++ as explained by Prasoon, so an alternative solution would be to use EnumToType class template,

struct Bar {
  enum { Special = 4 };
};

template<int e>
struct EnumToType
{
  static const int value = e;
};

template<class T, class K> //note I changed from "int K" to "class K"
struct Foo
{};

template<class T> 
struct Foo<T, EnumToType<(int)T::Special> > 
{
   static const int enumValue = T::Special;
};

Sample code at ideone : http://www.ideone.com/JPvZy


Or, you can simply specialize like this (if it solves your problem),

template<class T> struct Foo<T,Bar::Special> {};

//usage
Foo<Bar, Bar::Special> f;
link|improve this answer
3  
Very nice solution! – James McNellis Dec 28 '10 at 6:00
1  
A good solution indeed. +1 from me. :) – Prasoon Saurav Dec 28 '10 at 6:06
@James and Prasoon : thanks for the appreciation :-) – Nawaz Dec 28 '10 at 6:10
Note that you can use enum inside EnumToType instead of static const int. Also, the standard (C++0x, Boost) name for EnumToType is integral_constant. – Potatoswatter Dec 28 '10 at 8:19
feedback

The type of a non-type template argument cannot depend on a template parameter of a partial specialization.

ISO C++03 14.5.4/9 says

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.

template <int I, int J> struct A {};
template <int I> struct A<I+5, I*2> {}; //error
template <int I, int J> struct B {};
template <int I> struct B<I, I> {};     //OK

So something like this is illegal template<class T> struct Foo<T,T::Special> {}; because T::Special depends on T

The usage is also illegal. You have provided one template argument but you need to provide two.

link|improve this answer
1  
Why does the type of the non-type template parameter depend on the template parameter of the partial specialization here? The type is still int, no? – James McNellis Dec 28 '10 at 5:05
I am talking about the template argument (not about the template parameter int K) T::Special which depends on T. – Prasoon Saurav Dec 28 '10 at 5:10
Ah. The type of the argument is dependent upon T, the type of the parameter is int. – James McNellis Dec 28 '10 at 5:13
@James :Added relevant text from the Standard :) – Prasoon Saurav Dec 28 '10 at 5:15
Can you please explain what does it mean by : "A partially specialized non-type argument expression" 0_o. Arguments expression can be partially specialized? how?, Thanks a lot :) – SoulReaper Feb 10 at 17:49
feedback

Your Answer

 
or
required, but never shown

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