我得到了關於我的Vec2的操作員<斷言失敗,但我不知道什麼是錯誤的。我的操作員有什麼問題?
bool Vec2::operator<(const Vec2& v) const
{
if(x < v.x)
return true;
else
return y < v.y;
}
無效操作<性病組插入
template<class _Pr, class _Ty1, class _Ty2> inline
bool __CLRCALL_OR_CDECL _Debug_lt_pred(_Pr _Pred, const _Ty1& _Left, const _Ty2& _Right,
const wchar_t *_Where, unsigned int _Line)
{ // test if _Pred(_Left, _Right) and _Pred is strict weak ordering
if (!_Pred(_Left, _Right))
return (false);
else if (_Pred(_Right, _Left))
_DEBUG_ERROR2("invalid operator<", _Where, _Line);
return (true);
}
感謝
有什麼說法? –
無效的運算符<用於std set insert – jmasterx
[可能的重複?](http://stackoverflow.com/questions/9040689/stl-less-operator-and-invalid-operator-error) –