在涉及模板别名( 例如 ,在缺少构件类型名称的模板的别名,如在下面的代码段)的取代发生故障的情况下,应的错误触发?
锵和gcc似乎对此意见不一:
// some types
struct bar { };
struct foo {
typedef void member_type;
};
// template alias
template<class T>
using member = typename T::member_type;
template<class T>
void baz(... ) { }
// only works for gcc, clang fails with: no type named 'member_type'
// in 'bar'
template<class T>
void baz( member<T>* ) { }
int main(int, char** ) {
baz<bar>(0); // picks first
baz<foo>(0); // picks second
return 0;
}
所以,问题是:谁是正确的,为什么?
谢谢 :-)