在以下最小示例中,S::foo
有效,但S::bar
失败。
唯一的区别是参数包Ts
和Us
.
struct FPtr
并且S::lol
是我发现的最好的解决方法,但在实践中使用起来相当不舒服。
为什么参数推导bar
失败(特别是因为我已经明确指定了类型,所以根本不应该发生推论)?这是一个编译器错误(与clang++ 3.5
and一起出现g++ 4.9
),还是出于某种原因这是标准中的错误?
template<typename ... Ts>
struct FPtr {
FPtr(void (*val)(Ts ...)) : val{val} {}
void (*val)(Ts ...);
};
template<typename ... Ts>
struct S {
template<typename ... Us>
void lol(FPtr<Us ..., Ts ...>) {}
template<typename ... Us>
void foo(void (*)(Ts ..., Us ...)) {}
template<typename ... Us>
void bar(void (*)(Us ..., Ts ...)) {}
};
void f(int, float) {}
void g(float, int) {}
int main() {
S<int> s;
s.lol<float>(FPtr<float, int>(g));
s.foo<float>(f);
s.bar<float>(g);
}
错误信息是:
$ clang++ -std=c++14 t27.cpp -Wall -Wextra -pedantic
t27.cpp:31:4: error: no matching member function for call to 'bar'
s.bar<float>(g);
~~^~~~~~~~~~
t27.cpp:18:7: note: candidate template ignored: failed template argument deduction
void bar(void (*)(Us ..., Ts ...)) {}
^
注意:我已经在GCC和LLVM错误跟踪器上报告了这个错误。