私はこのなじみのない領域を突っついているので、この問題に関するDannyKalevのチュートリアルの簡単な例を試してみようと思いました。コードは非常に単純です。
template<> struct Count<> { static const int value = 0;};
template<typename T, typename... Args>
struct Count<T, Args...> //partial specialization
{
static const int value = 1 + Count<Args...>::value;
};
しかし、gcc 4.4.7および4.7.0でさえ(-std = c ++ 0x -std = gnu ++ 0xフラグにもかかわらず)次のように文句を言います。
/src/tests/VTemplates.h:12:8: error: 'Count' is not a template
/src/tests/VTemplates.h:12:18: error: explicit specialization of non-template 'Count'
/src/tests/VTemplates.h:16:8: error: 'Count' is not a template
/src/tests/VTemplates.h:16:26: error: 'Count' is not a template type
私は何が欠けていますか?