这让我和一些同事感到困惑,但我们已经验证这是针对大约 5 种不同编译器的错误。他们都返回这个小代码片段是“模棱两可的”。
namespace foo {
struct type_t {
int x;
};
void bar( type_t & );
}
void bar( foo::type_t & );
void func( void ) {
foo::type_t x = { 10 };
bar(x);
}
Clang 返回以下内容:
func.cpp:12:3: error: call to 'bar' is ambiguous
bar(x);
^~~
func.cpp:5:8: note: candidate function
void bar( type_t & );
^
func.cpp:8:6: note: candidate function
void bar( foo::type_t & );
^
1 error generated.
为什么会这样?代码中没有“使用”语句。解析顺序不应该包含 foo 命名空间,那么为什么要在那里搜索呢?为什么这是模棱两可的?