VC6编译通过,VS2005报错,请各位大大帮忙看下
class t_point :public POINT
{
...
}
inline operator == (const t_point& a, const t_point& b)
{//报错点
return (a.x==b.x && a.y == b.y );
}
VC6编译通过,VS2005报错,请各位大大帮忙看下
错误 error C4430: missing type specifier - int assumed. Note: C++ does not support default-int