将函数模板特化传递给可变参数模板函数

时间:2011-09-12 21:25:49

标签: c++ templates c++11 variadic-templates template-function

将函数模板特化的地址传递给常规模板函数没有问题:

template <typename T>
void f(T) {}

template <typename A, typename B>
void foo(A, B) {}

int main()
{
    foo(&f<int>, &f<float>);
}

但是,当我尝试将相同的特化传递给可变参数模板时:

template <typename T>
void f(T) {}

template <typename... A>
void bar(A...) {}

int main()
{
    bar(&f<int>, &f<float>);
}

我在GCC中遇到了以下编译器错误(我尝试过4.6.1和4.7.0):

test.cpp: In function 'int main()':
test.cpp:9:27: error: no matching function for call to 'bar(<unresolved overloaded function type>, <unresolved overloaded function type>)'
test.cpp:9:27: note: candidate is:
test.cpp:5:6: note: template<class ... A> void bar(A ...)
test.cpp:5:6: note:   template argument deduction/substitution failed:

为什么我会收到这些错误?

1 个答案:

答案 0 :(得分:5)

看起来它可能是bug in GCC that is possibly fixed in GCC 4.6.2(我说可能是因为它不完全相同,但确实涉及获取可变参数模板函数的地址)。