以下代码在 gcc 中没有问题。在 VS 2010 express 中它失败了
------ Build started: Project: helium, Configuration: Debug Win32 ------
testvs.cpp
..\..\helium\src\legacy\testvs.cpp(21): error C2664: 'ulink' : cannot convert parameter 1 from 'VP<T>' to 'VP<T> &'
with
[
T=F
]
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
对于任何 Visual Studio 版本都是一样的,还是仅限于 vs 2010 的问题?如果删除第二个 operator() 定义,问题就会消失
template<typename T> struct S{
void operator()(T&){}
void operator()(){}
};
template <typename T,typename G=typename T::GP,void (S<T>::*f)(T&) =&S<T>::operator() > struct VP{
void fa(){}
};
template<typename T> void ulink( VP<T >& v){}
struct F{
typedef int GP;
};
void f(){
VP<F> vps;
ulink(vps);
}