我有一个模板化的 C++ 类,在其成员函数之一上有一个进一步的模板。
我在我的代码中的两个地方调用它,其中一个有效,另一个生成一个非常令人困惑的错误,归结为下面的示例代码:
#include <memory>
template <unsigned char N>
struct Foo
{
template <typename OtherFoo, unsigned X>
void do_work (
const OtherFoo * __restrict,
float,
Foo * __restrict
)
const
{
}
};
struct Bar
{
std :: unique_ptr <Foo<0>> foo_0;
std :: unique_ptr <Foo<1>> foo_1;
std :: unique_ptr <Foo<2>> foo_2;
void run (float);
template <typename FOO>
void run (std :: unique_ptr <FOO> & foo, float x)
{
FOO out;
foo -> template do_work <123> (foo_2.get(), x, &out);
}
};
void Bar :: run (float x)
{
if (foo_0)
run (foo_0, x);
else
run (foo_1, x);
}
int main ()
{
Bar bar;
bar .run (1.23);
}
错误消息非常简单,但显然是错误的。
temp.cpp: In member function ‘void Bar::run(std::unique_ptr<FOO>&, float) [with FOO = Foo<0u>]’:
temp.cpp:61:16: instantiated from here
temp.cpp:54:3: error: no matching function for call to ‘Foo<0u>::do_work(Foo<2u>*, float&, Foo<0u>*)’
temp.cpp: In member function ‘void Bar::run(std::unique_ptr<FOO>&, float) [with FOO = Foo<1u>]’:
temp.cpp:63:16: instantiated from here
temp.cpp:54:3: error: no matching function for call to ‘Foo<1u>::do_work(Foo<2u>*, float&, Foo<1u>*)’
让我们看看,没有匹配的函数调用Foo<1u>::do_work(Foo<2u>*, float&, Foo<1u>*)
...?不,在我看来,这完全像 Foo:: do_work的有效实例化。
编译器错了吗?(ubuntu 12.04 上的 gcc 4.5.1)特别奇怪的是,这段代码确实在代码中其他地方的等效调用中编译(完整的东西有太多的依赖关系,无法在此处有意义地复制)。