add missing my_int3::operator!=

[SVN r9231]
This commit is contained in:
Jens Maurer 2001-02-16 21:28:59 +00:00
parent e9105d32cb
commit 2e0ee55b5e

View File

@ -213,6 +213,7 @@ public:
std::ptrdiff_t operator-(const my_int3& x) { return m_int - x.m_int; }
my_int3& operator--() { --m_int; return *this; }
bool operator==(const my_int3& x) const { return m_int == x.m_int; }
bool operator!=(const my_int3& x) const { return m_int != x.m_int; }
bool operator<(const my_int3& x) const { return m_int < x.m_int; }
private:
int m_int;