7

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

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:

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

4

1 回答 1

5

看起来它可能是 GCC 中的一个错误,可能在 GCC 4.6.2 中修复(我说可能是因为它不完全相同,但确实涉及获取可变参数模板函数的地址)。

于 2011-09-12T21:55:52.980 回答